TapTitanXNA_Aldecoa.Level.Level C# (CSharp) Method

Level() public method

public Level ( Microsoft.Xna.Framework.Content.ContentManager content, Game1 game ) : System
content Microsoft.Xna.Framework.Content.ContentManager
game Game1
return 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);
        }