FSO.Files.Formats.IFF.Chunks.SPRFrame.Init C# (CSharp) 메소드

Init() 보호된 메소드

protected Init ( int width, int height ) : void
width int
height int
리턴 void
        protected void Init(int width, int height)
        {
            this.Width = width;
            this.Height = height;
            Data = new Color[Width * Height];
        }