2017-09-16 19:54:33 +02:00
|
|
|
//
|
|
|
|
// Created by scott on 9/16/2017.
|
|
|
|
//
|
|
|
|
|
2017-09-16 21:13:06 +02:00
|
|
|
#ifndef GUARD_FIELDMAP_H
|
|
|
|
#define GUARD_FIELDMAP_H
|
2017-09-16 19:54:33 +02:00
|
|
|
|
|
|
|
// Exported type declarations
|
|
|
|
|
|
|
|
// Exported RAM declarations
|
|
|
|
|
|
|
|
// Exported ROM declarations
|
|
|
|
u8 MapGridGetMetatileBehaviorAt(s16, s16);
|
2017-09-13 11:16:26 +02:00
|
|
|
void GetCameraCoords(u16*, u16*);
|
2017-09-17 00:42:35 +02:00
|
|
|
bool8 MapGridIsImpassableAt(s16, s16);
|
|
|
|
s32 GetMapBorderIdAt(s16, s16);
|
|
|
|
bool32 CanCameraMoveInDirection(u8);
|
2017-09-16 19:54:33 +02:00
|
|
|
|
2017-09-16 21:13:06 +02:00
|
|
|
#endif //GUARD_FIELDMAP_H
|