Ejemplo n.º 1
0
 public bool Interact(Player player)
 {
     player.EnemiesInteractedWith++;
     GameplayManager.PlaySound("monster-moan");
     return(true);
 }
Ejemplo n.º 2
0
 public LevelRenderer(Level[] levels, Player player, GameplayManager gameplayManager)
 {
     this.levels          = levels;
     this.player          = player;
     this.gameplayManager = gameplayManager;
 }
Ejemplo n.º 3
0
 public bool Interact(Player player)
 {
     player.NumberOfMoves += 50;
     GameplayManager.PlaySound("trapdoor-interact");
     return(true);
 }