示例#1
0
        /// <summary>
        /// Create a new list of coins with one copper coin
        /// </summary>
        public CoinsController(App05Game game)
        {
            this.game = game;
            Coins     = new List <AnimatedSprite>();

            copperCoinSheet = game.Content.Load <Texture2D>("Actors/coin_copper");

            CreateCoin();
        }
示例#2
0
 public CoinsScreen(App05Game game)
 {
     this.game = game;
     LoadContent();
 }
示例#3
0
 public StartScreen(App05Game game)
 {
     this.game = game;
     LoadContent();
 }
示例#4
0
 public AsteroidsScreen(App05Game game)
 {
     this.game = game;
     LoadContent();
 }