Newer
Older
DungeonShooting / DungeonShooting_Godot / src / framework / map / DungeonRoomSplit.cs
@小李xl 小李xl on 19 Feb 2023 235 bytes 自动整合RoomConfig配置

using System.Text.Json.Serialization;

public class DungeonRoomSplit
{
    [JsonInclude]
    public string ResourcePath;
    
    [JsonInclude]
    public string ConfigPath;

    [JsonInclude]
    public DungeonRoomInfo RoomInfo;
}