using System; namespace gaemstone.ECS; /// /// Entity for storing global game state and configuration. /// Parameters can use to source this entity. /// [Singleton] public struct Game { } /// Equivalent to . [AttributeUsage(AttributeTargets.Parameter)] public class GameAttribute : SourceAttribute { }