mirror of
https://github.com/dcronqvist/DotTiled.git
synced 2025-05-08 20:26:03 +03:00
8 lines
188 B
C#
8 lines
188 B
C#
namespace DotTiled;
|
|
|
|
public class Template
|
|
{
|
|
// At most one of (if the template is a tile object)
|
|
public Tileset? Tileset { get; set; }
|
|
public required Object Object { get; set; }
|
|
}
|