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

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

public DrawViewLoop ( IntPtr hdc, AGS.Types.ViewLoop loop, int x, int y, int sizeInPixels, int selectedFrame ) : void
hdc System.IntPtr
loop AGS.Types.ViewLoop
x int
y int
sizeInPixels int
selectedFrame int
Результат void
        public void DrawViewLoop(IntPtr hdc, ViewLoop loop, int x, int y, int sizeInPixels, int selectedFrame)
        {
            lock (_spriteSetLock)
            {
                _native.DrawViewLoop((int)hdc, loop, x, y, sizeInPixels, selectedFrame);
            }
        }