mirror of
https://github.com/zeldaret/tww.git
synced 2026-05-23 06:54:16 -04:00
adb95b135c
Original repository: https://github.com/encounter/ww
16 lines
330 B
C
16 lines
330 B
C
|
|
#ifndef F_PC_DRAW_PRIORITY_H_
|
|
#define F_PC_DRAW_PRIORITY_H_
|
|
|
|
#include "dolphin/types.h"
|
|
|
|
typedef struct draw_priority_class {
|
|
s16 mPriority;
|
|
} draw_priority_class;
|
|
|
|
s16 fpcDwPi_Get(draw_priority_class* pDwPi);
|
|
void fpcDwPi_Set(draw_priority_class* pDwPi, s16 p);
|
|
void fpcDwPi_Init(draw_priority_class* pDwPi, s16 p);
|
|
|
|
#endif
|