public override void PrintCantVerbObj(IGameBase obj) { Debug.Assert(obj != null); gOut.Print("You stare at {0}, but you don't see any secret messages forming.", obj.GetTheName()); }
public virtual void PrintCantVerbObj(IGameBase obj) { Debug.Assert(obj != null); gOut.Print("You can't {0} {1}.", Command.Verb, obj.GetTheName()); }
public virtual void PrintWhyAttack(IGameBase obj) { Debug.Assert(obj != null); gOut.Print("Why would you attack {0}?", obj.GetTheName()); }