mirror of https://github.com/PrimeDecomp/prime.git
15 lines
246 B
C++
15 lines
246 B
C++
|
#ifndef _TGAMETYPES_HPP
|
||
|
#define _TGAMETYPES_HPP
|
||
|
|
||
|
#include "types.h"
|
||
|
|
||
|
typedef s32 TAreaId;
|
||
|
typedef s32 TEditorId;
|
||
|
typedef u16 TUniqueId;
|
||
|
|
||
|
extern TAreaId kInvalidAreaId;
|
||
|
extern TEditorId kInvalidEditorId;
|
||
|
extern TUniqueId kInvalidUniqueId;
|
||
|
|
||
|
#endif
|