AGS.Types.PaletteEntry.PaletteEntry C# (CSharp) Method

PaletteEntry() public method

public PaletteEntry ( int index, Color color ) : System
index int
color Color
return System
        public PaletteEntry(int index, Color color)
        {
            _color = color;
            _type = PaletteColourType.Background;
            _index = index;
        }
PaletteEntry