mirror of
https://github.com/zeldaret/tp
synced 2026-05-23 06:54:28 -04:00
24b72a5302
* cleanup f_pc files * cleanup f_op files * fix a couple f_op_actor_mng functions * minor JSystem work
16 lines
380 B
C
16 lines
380 B
C
|
|
#ifndef F_PC_DRAW_PRIORITY_H_
|
|
#define F_PC_DRAW_PRIORITY_H_
|
|
|
|
#include "dolphin/types.h"
|
|
|
|
typedef struct draw_priority_class {
|
|
s16 priority;
|
|
} draw_priority_class;
|
|
|
|
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);
|
|
|
|
#endif
|