Newer
Older
DungeonShooting / DungeonShooting_Godot / src / game / hall / Hall.cs
@小李xl 小李xl on 21 Feb 2024 248 bytes 游戏大厅, 开发中

using Godot;

/// <summary>
/// 游戏大厅
/// </summary>
public partial class Hall : World
{
    public RoomInfo RoomInfo { get; set; }
    
    public override void _Ready()
    {
        base._Ready();
        Color = Colors.White;
    }
}