Exemplo n.º 1
0
 //Singleton, so people can play game together
 public static OXGame GetInstance()
 {
     if (_instance == null)
     {
         _instance = new OXGame();
     }
     return(_instance);
 }
Exemplo n.º 2
0
 public OXPlugin()
 {
     game = OXGame.GetInstance();
 }