public Game1() : base() { graphics = new GraphicsDeviceManager(this); Content.RootDirectory = "Content"; digdug = new DigDug(this); this.Components.Add(digdug); fygar = new Fygar(this, digdug); this.Components.Add(fygar); pooka = new Pooka(this, digdug); this.Components.Add(pooka); doge = new Doge(this, digdug); this.Components.Add(doge); }
public Fygar(Game game, DigDug digdug) : base(game) { this.digdug = digdug; }
public Pooka(Game game, DigDug digdug) : base(game) { this.digdug = digdug; }
public Doge(Game game, DigDug digdug) : base(game) { this.digdug = digdug; }