Newer
Older
DungeonShooting / DungeonShooting_Godot / src / game / ui / encyclopedia / TabData.cs
@小李xl 小李xl on 13 Mar 2024 322 bytes 制作图鉴
  1. namespace UI.Encyclopedia;
  2.  
  3. public class TabData
  4. {
  5. /// <summary>
  6. /// 图标
  7. /// </summary>
  8. public string Icon;
  9. /// <summary>
  10. /// 物体类型
  11. /// </summary>
  12. public ActivityType Type;
  13.  
  14. public TabData(string icon, ActivityType type)
  15. {
  16. Icon = icon;
  17. Type = type;
  18. }
  19. }