mirror of
https://github.com/encounter/tp.git
synced 2026-07-11 06:18:46 -07:00
17 lines
291 B
C
17 lines
291 B
C
|
|
#ifndef F_PC_DRAW_PRIORITY_H
|
|
#define F_PC_DRAW_PRIORITY_H
|
|
|
|
struct draw_priority_class {
|
|
short mPriority;
|
|
};
|
|
|
|
extern "C" {
|
|
|
|
int fpcDwPi_Get(draw_priority_class* pDwPi);
|
|
void fpcDwPi_Set(draw_priority_class* pDwPi, int p);
|
|
void fpcDwPi_Init(draw_priority_class* pDwPi, int p);
|
|
};
|
|
|
|
#endif
|