mirror of
https://github.com/pret/pmd-red.git
synced 2024-11-23 05:00:12 +00:00
14 lines
482 B
C
14 lines
482 B
C
#ifndef GUARD_BG_PALETTE_BUFFER_H
|
|
#define GUARD_BG_PALETTE_BUFFER_H
|
|
|
|
#include "structs/rgb.h"
|
|
|
|
void InitBGPaletteBuffer(void);
|
|
void nullsub_4(s32 index, const RGB *color, s32 brightness, const RGB *ramp);
|
|
void nullsub_5(s32 index, const RGB *color);
|
|
void SetBGPaletteBufferColorArray(s32 index, const RGB *color);
|
|
void SetBGPaletteBufferColorRGB(s32 index, const RGB *color, s32 brightness, const RGB *ramp);
|
|
void TransferBGPaletteBuffer(void);
|
|
|
|
#endif // GUARD_BG_PALETTE_BUFFER_H
|