TapTitanXNA_JuliusMolina.Level.Level C# (CSharp) 메소드

Level() 공개 메소드

public Level ( Microsoft.Xna.Framework.Content.ContentManager content ) : System
content Microsoft.Xna.Framework.Content.ContentManager
리턴 System
        public Level(ContentManager content)
        {
            this.content = content;

            enemy1 = new Enemy(content, this, "snowman");
            enemy2 = new Enemy(content, this, "shroom");
            hero = new Hero(content, this, "hero");
            support1 = new Hero(content, this, "support1");
        }