예제 #1
0
        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());
        }
예제 #2
0
        public virtual void PrintCantVerbObj(IGameBase obj)
        {
            Debug.Assert(obj != null);

            gOut.Print("You can't {0} {1}.", Command.Verb, obj.GetTheName());
        }
예제 #3
0
        public virtual void PrintWhyAttack(IGameBase obj)
        {
            Debug.Assert(obj != null);

            gOut.Print("Why would you attack {0}?", obj.GetTheName());
        }