mirror of
https://github.com/encounter/tp.git
synced 2026-07-11 06:18:46 -07:00
* checkpoint * checkpoint * rename f_pc * checkpoint * small symbol rename and fix some fpc symbols * remove unneeded entries from ldscript * simplify ok check, update docker container Co-authored-by: Pheenoh <pheenoh@gmail.com>
16 lines
329 B
C
16 lines
329 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;
|
|
|
|
s32 fpcDwPi_Get(const draw_priority_class* pDwPi);
|
|
void fpcDwPi_Set(draw_priority_class* pDwPi, s16 p);
|
|
void fpcDwPi_Init(draw_priority_class* pDwPi, s16 p);
|
|
|
|
#endif
|