mirror of
https://github.com/pret/pokeplatinum.git
synced 2026-05-27 10:45:16 -05:00
This moves the files holding constants for the BDHC, map matrix and map prop subsystems to the `include/constants/field` directory. Signed-off-by: Kuruyia <github@kuruyia.net>
11 lines
336 B
C
11 lines
336 B
C
#ifndef POKEPLATINUM_CONSTANTS_FIELD_MAP_MATRIX_H
|
|
#define POKEPLATINUM_CONSTANTS_FIELD_MAP_MATRIX_H
|
|
|
|
#define MAP_MATRIX_MAX_WIDTH 30
|
|
#define MAP_MATRIX_MAX_HEIGHT 30
|
|
#define MAP_MATRIX_MAX_SIZE (MAP_MATRIX_MAX_WIDTH * MAP_MATRIX_MAX_HEIGHT)
|
|
|
|
#define MAP_MATRIX_MAX_NAME_LENGTH 16
|
|
|
|
#endif // POKEPLATINUM_CONSTANTS_FIELD_MAP_MATRIX_H
|