2024-05-12 10:00:47 +00:00
|
|
|
|
namespace ColdMint.scripts.levelGraphEditor;
|
|
|
|
|
|
|
|
|
|
public class RoomNodeData : IRoomNodeData
|
|
|
|
|
{
|
2024-05-15 13:52:07 +00:00
|
|
|
|
public string Id { get; set; }
|
2024-05-12 10:00:47 +00:00
|
|
|
|
public string Title { get; set; }
|
|
|
|
|
public string Description { get; set; }
|
|
|
|
|
}
|