public RailsrogueGame() { s_game = this; m_entities = new List<Entity>(); m_addedEntities = new List<Entity>(); m_removedEntities = new List<Entity>(); m_enumeratingActiveSet = false; IsMouseVisible = true; Content.RootDirectory = "Content"; m_graphics = new GraphicsDeviceManager (this); m_graphics.IsFullScreen = false; }
public override void FinishedLaunching(MonoMac.Foundation.NSObject notification) { game = new RailsrogueGame (); game.Run (); }