Exemplo n.º 1
0
 protected void Awake()
 {
     if (_instance != null)
     {
         throw new Exception("Tentative de création d'une autre instance de Gabriel alors que c'est un singleton.");
     }
     _instance = this;
 }
Exemplo n.º 2
0
 protected void OnDestroy()
 {
     _instance = null;
 }