Newer
Older
DungeonShooting / DungeonShooting_Godot / src / game / hall / Hall.cs

using Godot;

/// <summary>
/// 游戏大厅
/// </summary>
public partial class Hall : World
{
    /// <summary>
    /// 玩家出生标记
    /// </summary>
    [Export]
    public Marker2D BirthMark;

    [Export]
    public Sprite2D BgSprite;
    
    /// <summary>
    /// 房间数据, 该数据时虚拟出来的, 并不是配置文件读取出来的
    /// </summary>
    public RoomInfo RoomInfo { get; set; }
}