mirror of
https://github.com/pret/pokeruby.git
synced 2026-04-24 23:17:38 -05:00
15 lines
242 B
C
15 lines
242 B
C
#ifndef GUARD_FIELD_TASKS_H
|
|
#define GUARD_FIELD_TASKS_H
|
|
|
|
struct MetatileOffset {
|
|
s8 x;
|
|
s8 y;
|
|
u16 tileId;
|
|
};
|
|
|
|
void SetUpFieldTasks();
|
|
void ActivatePerStepCallback(u8);
|
|
void ResetFieldTasksArgs(void);
|
|
|
|
#endif // GUARD_FIELD_TASKS_H
|