/// <summary> /// The main entry point for the application. /// </summary> static void Main(string[] args) { using (BugGame game = new BugGame()) { game.Run(); } }
public Roses(BugGame game) { this.game = game; }
public Butterfly(BugGame game) { this.game = game; states = WingStates.Up; }
private int wing2; // Index to the wing 2 bone #endregion Fields #region Constructors public BeeSwarm(BugGame game) { this.game = game; }