namespace MoonTools.ECS { public struct Template { public int ID { get; } internal Template(int id) { ID = id; } } }