예제 #1
0
        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;
        }
예제 #2
0
 public override void FinishedLaunching(MonoMac.Foundation.NSObject notification)
 {
     game = new RailsrogueGame ();
     game.Run ();
 }