mirror of https://github.com/zeldaret/tp.git
19 lines
340 B
C
19 lines
340 B
C
|
|
#ifndef F_PC_DRAW_PRIORITY_H_
|
|
#define F_PC_DRAW_PRIORITY_H_
|
|
|
|
#include "global.h"
|
|
|
|
typedef struct draw_priority_class {
|
|
s16 mPriority;
|
|
} draw_priority_class;
|
|
|
|
extern "C" {
|
|
|
|
s32 fpcDwPi_Get(draw_priority_class* pDwPi);
|
|
void fpcDwPi_Set(draw_priority_class* pDwPi, s32 p);
|
|
void fpcDwPi_Init(draw_priority_class* pDwPi, s32 p);
|
|
};
|
|
|
|
#endif
|