mirror of
https://github.com/wavemotion-dave/NINTV-DS.git
synced 2025-06-18 13:55:33 -04:00
15 lines
158 B
C
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
|