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