Ejemplo n.º 1
0
 //private Model butterfly;
 public BugGame()
 {
     graphics = new GraphicsDeviceManager(this);
     Content.RootDirectory = "Content";
     butterfly = new Butterfly(this);
     camera = new Camera(graphics);
 }
Ejemplo n.º 2
0
 //private Model butterfly;
 public BugGame()
 {
     graphics = new GraphicsDeviceManager(this);
     Content.RootDirectory = "Content";
     butterfly = new Butterfly(this);
     swarm = new BeeSwarm(this);
     rose = new Roses(this);
     camera = new Camera(graphics);
     score = 0;
     lives = 3;
 }