SetPropertyInt() 공개 추상적인 메소드

public abstract SetPropertyInt ( string strPropertyName, Int64 nValue ) : bool
strPropertyName string
nValue Int64
리턴 bool
예제 #1
0
        public override bool SetPropertyInt(NFGUID self, string strPropertyName, Int64 nValue)
        {
            if (mhtObject.ContainsKey(self))
            {
                NFIObject xGameObject = (NFIObject)mhtObject[self];
                return(xGameObject.SetPropertyInt(strPropertyName, nValue));
            }

            return(false);
        }