Ejemplo n.º 1
0
        public Game1()
        {
            graphics = new GraphicsDeviceManager(this);
            this.content = Content;
            level = new Level(content, this);

            graphics.PreferredBackBufferWidth = Level.windowWidth;
            graphics.PreferredBackBufferHeight = Level.windowHeight;
            Content.RootDirectory = "Content";
            this.IsMouseVisible = true;
        }
Ejemplo n.º 2
0
 public Shia(ContentManager content, Level level)
 {
     this.content = content;
     this.level = level;
 }