mirror of
https://github.com/pret/pokeplatinum.git
synced 2026-04-23 07:28:11 -05:00
Documents `ov5_021D5B40`. This module contains the functions used to create and delete the field system's camera, as well as the camera presets (or types) used by the different maps (see `include/data/map_headers.h`). Also moves `CameraAngle` from `overlay115/camera_angle.h` to `camera.h`.
14 lines
407 B
C
14 lines
407 B
C
#ifndef POKEPLATINUM_OV5_FIELD_CAMERA_H
|
|
#define POKEPLATINUM_OV5_FIELD_CAMERA_H
|
|
|
|
#include <nitro/fx/fx.h>
|
|
|
|
#include "constants/camera_types.h"
|
|
|
|
#include "field/field_system_decl.h"
|
|
|
|
void FieldCamera_Create(const VecFx32 *_target, FieldSystem *fieldSystem, const enum CameraType configID, const BOOL withHistory);
|
|
void FieldCamera_Delete(FieldSystem *fieldSystem);
|
|
|
|
#endif // POKEPLATINUM_OV5_FIELD_CAMERA_H
|