QueryRecordVector2() public abstract method

public abstract QueryRecordVector2 ( string strRecordName, int nRow, int nCol ) : NFVector2
strRecordName string
nRow int
nCol int
return NFVector2
Beispiel #1
0
        public override NFVector2 QueryRecordVector2(NFGUID self, string strRecordName, int nRow, int nCol)
        {
            if (mhtObject.ContainsKey(self))
            {
                NFIObject xGameObject = (NFIObject)mhtObject[self];
                return(xGameObject.QueryRecordVector2(strRecordName, nRow, nCol));
            }

            return(new NFVector2());
        }