NScumm.Scumm.ScummEngine.DrawObjectCore C# (CSharp) 메소드

DrawObjectCore() 보호된 메소드

protected DrawObjectCore ( int &xpos, int &ypos, int &state ) : void
xpos int
ypos int
state int
리턴 void
        protected virtual void DrawObjectCore(out int xpos, out int ypos, out int state)
        {
            xpos = GetVarOrDirectWord(OpCodeParameter.Param2);
            ypos = GetVarOrDirectWord(OpCodeParameter.Param3);
            state = 1;
        }
ScummEngine