7 lines
176 B
C#
7 lines
176 B
C#
|
namespace ColdMint.scripts.levelGraphEditor;
|
|||
|
|
|||
|
public class RoomNodeData : IRoomNodeData
|
|||
|
{
|
|||
|
public string Title { get; set; }
|
|||
|
public string Description { get; set; }
|
|||
|
}
|