FSO.Content.Model.InMemoryTextureRefWithMask.InMemoryTextureRefWithMask C# (CSharp) Method

InMemoryTextureRefWithMask() public method

public InMemoryTextureRefWithMask ( byte data, uint maskColors ) : System
data byte
maskColors uint
return System
        public InMemoryTextureRefWithMask(byte[] data, uint[] maskColors)
            : base(data)
        {
            _Data = data;
            _MaskColors = maskColors;
        }
InMemoryTextureRefWithMask