pokeplatinum/include/constants/types.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

11 lines
246 B
C

#ifndef POKEPLATINUM_CONSTANTS_TYPES_H
#define POKEPLATINUM_CONSTANTS_TYPES_H
#define S16_INT_MASK 0x7FFF
#define S16_SIGN_MASK 0x8000
#define S32_INT_MASK 0x7FFFFFFF
#define S32_SIGN_MASK 0x80000000
#endif // POKEPLATINUM_CONSTANTS_TYPES_H