Server.Mobiles.BaseCreature.CheckGold C# (CSharp) 메소드

CheckGold() 공개 메소드

public CheckGold ( Server.Mobile from, Item dropped ) : bool
from Server.Mobile
dropped Item
리턴 bool
        public virtual bool CheckGold( Mobile from, Item dropped )
        {
            if ( dropped is Gold )
                return OnGoldGiven( from, (Gold)dropped );

            return false;
        }
BaseCreature