/// <summary> /// Singleton pattern /// </summary> /// <returns></returns> protected static LightManager getInstance() { if (_instance == null) _instance = new LightManager(); return _instance; }