namespace Pink.Environment { public static partial class Simulation { /// /// This class provides a container for creating singletons for any other class, /// within the scope of the Simulation. It is typically used to hold the simulation /// models and configuration classes. /// /// static class InstanceRegister where T : class, new() { public static T instance = new T(); } } }