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