Exemplo n.º 1
0
        public InfiniteScroller(GlobalWarmingDenial game, int x, float factor, int height)
        {
            this.game   = game;
            this.height = height;
            this.factor = factor;
            this.x      = x;

            position1 = new Vector2(x, 0);
            position2 = new Vector2(x, height);
        }
Exemplo n.º 2
0
 public Tile(GlobalWarmingDenial game, World world, TileType type) : base(game)
 {
     this.world = world;
     this.type  = type;
 }
Exemplo n.º 3
0
 public Player(GlobalWarmingDenial game) : base(game)
 {
 }
Exemplo n.º 4
0
 public Effects(GlobalWarmingDenial game)
 {
     this.game = game;
     this.factory.LoadParticleTextures(game.GraphicsDevice, game.Content);
 }
Exemplo n.º 5
0
 public HUD(GlobalWarmingDenial game)
 {
     this.game = game;
 }
Exemplo n.º 6
0
 public Generator(GlobalWarmingDenial game, World world)
 {
     this.game  = game;
     this.world = world;
 }
Exemplo n.º 7
0
 static void Main()
 {
     using (var game = new GlobalWarmingDenial())
         game.Run();
 }
Exemplo n.º 8
0
 public World(GlobalWarmingDenial game)
 {
     this.game = game;
     gen       = new Generator(game, this);
 }
Exemplo n.º 9
0
 public Sprite(GlobalWarmingDenial game)
 {
     this.game = game;
 }