Newer
Older
DungeonShooting / DungeonShooting_Godot / src / game / room / TileCellInfo.cs
@小李xl 小李xl on 4 Feb 2023 226 bytes 随机生成的房间铺地砖(未完成)

using Godot;

public class TileCellInfo
{
    public TileCellInfo(int id, Vector2? autotileCoord)
    {
        Id = id;
        AutotileCoord = autotileCoord;
    }

    public int Id;
    public Vector2? AutotileCoord;
}