AGS.Editor.NativeProxy.DrawSprite C# (CSharp) Метод

DrawSprite() публичный Метод

public DrawSprite ( IntPtr hdc, int x, int y, int spriteNum ) : void
hdc System.IntPtr
x int
y int
spriteNum int
Результат void
        public void DrawSprite(IntPtr hdc, int x, int y, int spriteNum)
        {
            lock (_spriteSetLock)
            {
                _native.DrawSprite((int)hdc, x, y, spriteNum, false);
            }
        }

Same methods

NativeProxy::DrawSprite ( IntPtr hdc, int x, int y, int spriteNum, bool flipImage ) : void
NativeProxy::DrawSprite ( IntPtr hdc, int x, int y, int width, int height, int spriteNum ) : void