mirror of
https://github.com/pmret/papermario.git
synced 2024-11-08 12:02:30 +01:00
0538a9220b
* near-match func_800279B4 * fix lakilester split * match func_8023A1B0_70DEC0 * match func_800271FC * further work on func_800279B4 * match update_cameras * add CAM_FLAGs * remove CAM macro
16 lines
248 B
C
16 lines
248 B
C
#ifndef _CAMERA_H_
|
|
#define _CAMERA_H_
|
|
|
|
extern f32 D_8009A5EC;
|
|
|
|
enum {
|
|
CAM_FLAG_ENABLED = 0x2,
|
|
CAM_FLAG_LEAD_PLAYER = 0x4,
|
|
CAM_FLAG_SHAKING = 0x8,
|
|
CAM_FLAG_ORTHO = 0x10,
|
|
CAM_FLAG_80 = 0x80,
|
|
CAM_FLAG_1000 = 0x1000,
|
|
};
|
|
|
|
#endif
|