NINTV-DS/arm9/source/emucore/Palette.h
2021-09-02 17:32:31 -04:00

15 lines
158 B
C

#ifndef PALETTE_H
#define PALETTE_H
#include "types.h"
typedef struct _PALETTE
{
UINT16 m_iNumEntries;
UINT32 m_iEntries[256];
} PALETTE;
#endif