mirror of
https://github.com/pret/pokeruby.git
synced 2026-08-08 02:24:08 -05:00
* Declare more non-static functions in header files * Use `(void)` for functions without arguments. * Move global-included data to seperate headers * Don't import types or global in header * Fix fieldmap imports * Revert in-code changes * Add missing newlines
10 lines
184 B
C
10 lines
184 B
C
#ifndef GUARD_VAR_H
|
|
#define GUARD_VAR_H
|
|
|
|
u16 *GetVarPointer(u16 id);
|
|
u16 VarGet(u16 id);
|
|
bool8 VarSet(u16 id, u16 value);
|
|
u8 VarGetFieldObjectGraphicsId(u8 id);
|
|
|
|
#endif // GUARD_VAR_H
|