2024-05-12 10:00:47 +00:00
|
|
|
|
namespace ColdMint.scripts.levelGraphEditor;
|
|
|
|
|
|
2024-05-16 14:46:03 +00:00
|
|
|
|
public class RoomNodeData
|
2024-05-12 10:00:47 +00:00
|
|
|
|
{
|
2024-05-15 14:08:52 +00:00
|
|
|
|
public string? Id { get; set; }
|
|
|
|
|
public string? Title { get; set; }
|
|
|
|
|
public string? Description { get; set; }
|
2024-05-12 10:00:47 +00:00
|
|
|
|
}
|