summaryrefslogtreecommitdiff
path: root/neschr/IIndexedPalette.cs
blob: 67b7db1092f3f80ab7fd2a4a4319a7f7cf935ac3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
using System;
using System.Collections.Generic;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace UCTest
{
    public interface IIndexedPalette
    {
        event EventHandler PaletteChanged;
        int PaletteSize {get;}
        Color[] Palette {get;}
        void Set(int index, int r, int g, int b, int a);
    }
}