mirror of
https://github.com/AdAstra-LD/DS-Pokemon-Rom-Editor.git
synced 2026-05-12 15:04:55 -05:00
29 lines
590 B
C#
29 lines
590 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Drawing;
|
|
using System.Drawing.Imaging;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DSPRE.Editors.Utils
|
|
{
|
|
public class SpriteSet
|
|
{
|
|
public Bitmap[] Sprites;
|
|
public ColorPalette Normal;
|
|
public ColorPalette Shiny;
|
|
|
|
public SpriteSet()
|
|
{
|
|
Sprites = new Bitmap[4];
|
|
for (int i = 0; i < 4; i++)
|
|
{
|
|
Sprites[i] = null;
|
|
}
|
|
Normal = null;
|
|
Shiny = null;
|
|
}
|
|
}
|
|
}
|