Newer
Older
DungeonShooting / DungeonShooting_Godot / src / game / hall / Hall.cs
@王晗智 王晗智 on 4 Mar 2024 388 bytes 01
  1.  
  2. using Godot;
  3.  
  4. /// <summary>
  5. /// 游戏大厅
  6. /// </summary>
  7. public partial class Hall : World
  8. {
  9. /// <summary>
  10. /// 玩家出生标记
  11. /// </summary>
  12. [Export]
  13. public Marker2D BirthMark;
  14.  
  15. [Export]
  16. public Sprite2D BgSprite;
  17. /// <summary>
  18. /// 房间数据, 该数据时虚拟出来的, 并不是配置文件读取出来的
  19. /// </summary>
  20. public RoomInfo RoomInfo { get; set; }
  21. }