pokeplatinum/include/overlay009/camera_configuration.h
Kuruyia 53ef036ce1 Start documenting Distortion World and its camera
This begins the documentation of overlay009, which is in charge of
managing stuff related to the Distortion World.

For now, the scope of this commit has been limited to the following:

- start documenting structures used throughout this overlay, more
  specifically the `DistortionWorldSystem` struct
- start documenting the structures found inside the files of the
  `tw_arc.narc` NARC
- document functions and structures related to camera management inside
  the Distortion Word, including the templates found inside the
  `tw_arc.narc` NARC

Signed-off-by: Kuruyia <github@kuruyia.net>
2025-06-30 18:19:07 +02:00

15 lines
321 B
C

#ifndef POKEPLATINUM_STRUCT_CAMERA_CONFIGURATION_H
#define POKEPLATINUM_STRUCT_CAMERA_CONFIGURATION_H
#include "camera.h"
typedef struct {
fx32 distance;
CameraAngle cameraAngle;
u8 projectionMtx;
u16 fovY;
u8 padding_0F;
} CameraConfiguration;
#endif // POKEPLATINUM_STRUCT_CAMERA_CONFIGURATION_H