예제 #1
0
파일: Palette.cs 프로젝트: kael-ip/rippix
 public int GetARGB(int index)
 {
     if (index < 0 || index >= decoder.Length)
     {
         return(0);
     }
     return(decoder.GetARGB(Data, Offset, index));
 }