mirror of
https://github.com/pret/pmd-red.git
synced 2024-11-24 05:29:47 +00:00
11 lines
216 B
C
11 lines
216 B
C
#ifndef GUARD_TRAP_H
|
|
#define GUARD_TRAP_H
|
|
|
|
#include "structs/str_position.h"
|
|
|
|
bool8 CanLayTrap(Position *pos);
|
|
bool8 LayTrap(Position *pos, u8 trapID, u8 param_3);
|
|
void GetTrapName(u8 *buffer, u8 trapIndex);
|
|
|
|
#endif
|