Traveller/scripts/levelGraphEditor/RoomNodeData.cs
Cold-Mint 250bd53392
Support to delete the selected node, the room template edit box for anti-shake processing.
支持删除选中的节点了,对房间模板编辑框进行防抖处理。
2024-05-17 22:08:19 +08:00

10 lines
250 B
C#

namespace ColdMint.scripts.levelGraphEditor;
public class RoomNodeData
{
public string? Id { get; set; }
public string? Title { get; set; }
public string? Description { get; set; }
public string[]? RoomTemplateSet { get; set; }
}