FSO.Files.Formats.IFF.Chunks.SPRFrame.SetPixel C# (CSharp) Method

SetPixel() public method

public SetPixel ( int x, int y, Color color ) : void
x int
y int
color Color
return void
        public void SetPixel(int x, int y, Color color)
        {
            Data[(y * Width) + x] = color;
        }