TapTitanXNA_Aldecoa.Level.Level C# (CSharp) Méthode

Level() public méthode

public Level ( Microsoft.Xna.Framework.Content.ContentManager content, Game1 game ) : System
content Microsoft.Xna.Framework.Content.ContentManager
game Game1
Résultat System
        public Level(ContentManager content, Game1 game)
        {
            this.content = content;
            this.game = game;

            hero = new Hero(content, this);
            shia = new Shia(content, this);
            jojo = new Jotaro(content, this);
        }