2021-04-01 12:06:29 +02:00
|
|
|
|
|
|
|
|
#ifndef F_PC_DRAW_PRIORITY_H_
|
|
|
|
|
#define F_PC_DRAW_PRIORITY_H_
|
2021-03-28 22:49:05 +02:00
|
|
|
|
|
|
|
|
#include "dolphin/types.h"
|
|
|
|
|
|
2021-04-01 12:06:29 +02:00
|
|
|
typedef struct draw_priority_class {
|
2024-11-29 08:24:26 -08:00
|
|
|
s16 priority;
|
2021-04-01 12:06:29 +02:00
|
|
|
} draw_priority_class;
|
|
|
|
|
|
2024-11-29 08:24:26 -08:00
|
|
|
s16 fpcDwPi_Get(const draw_priority_class* i_drawpriority);
|
|
|
|
|
void fpcDwPi_Set(draw_priority_class* i_drawpriority, s16 i_priority);
|
|
|
|
|
void fpcDwPi_Init(draw_priority_class* i_drawpriority, s16 i_priority);
|
2021-04-01 12:06:29 +02:00
|
|
|
|
|
|
|
|
#endif
|