Ejemplo n.º 1
0
 /// <summary>
 /// The main entry point for the application.
 /// </summary>
 static void Main(string[] args)
 {
     using (BugGame game = new BugGame())
     {
         game.Run();
     }
 }
Ejemplo n.º 2
0
 public Roses(BugGame game)
 {
     this.game = game;
 }
Ejemplo n.º 3
0
 public Butterfly(BugGame game)
 {
     this.game = game;
        states = WingStates.Up;
 }
Ejemplo n.º 4
0
        private int wing2; // Index to the wing 2 bone

        #endregion Fields

        #region Constructors

        public BeeSwarm(BugGame game)
        {
            this.game = game;
        }