mirror of
https://github.com/AdAstra-LD/DS-Pokemon-Rom-Editor.git
synced 2026-06-01 04:55:57 -05:00
18 lines
389 B
C#
18 lines
389 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace LibNDSFormats.NSBMD
|
|
{
|
|
public class NSBMDPalette
|
|
{
|
|
public int color0;
|
|
public RGBA[] paldata;
|
|
public List<uint> palmatid = new List<uint>();
|
|
public string palname = String.Empty;
|
|
public UInt32 paloffset;
|
|
public UInt32 palsize;
|
|
}
|
|
}
|