mirror of
https://github.com/PrimeDecomp/echoes.git
synced 2026-07-12 18:18:57 -07:00
17 lines
266 B
C++
17 lines
266 B
C++
#ifndef _CGAMEAREA
|
|
#define _CGAMEAREA
|
|
|
|
class CScriptAreaProperties;
|
|
class CGameArea {
|
|
public:
|
|
int GetPhase() const { return m_phase; }
|
|
|
|
void SetAreaAttributes(CScriptAreaProperties*);
|
|
|
|
private:
|
|
char pad1[0xf4];
|
|
int m_phase; // 0xf4;
|
|
};
|
|
|
|
#endif // _CGAMEAREA
|