10 lines
250 B
C#
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; }
|
|
} |