Newer
Older
DungeonShooting / DungeonShooting_Godot / src / game / hall / Hall.cs
@王晗智 王晗智 on 4 Mar 2024 388 bytes 01

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; }
}