move const, types and vars to global/

This commit is contained in:
rr- 2021-03-21 21:17:46 +01:00
parent 4c5071deb9
commit 3cddb20649
No known key found for this signature in database
GPG key ID: CC65E6FD28CAE42A
219 changed files with 318 additions and 361 deletions

View file

@ -14,7 +14,7 @@ def main() -> None:
with (BUILD_DIR / "init.c").open("w") as handle:
print('#include "init.h"', file=handle)
print(file=handle)
print('#include "game/vars.h"', file=handle)
print('#include "global/vars.h"', file=handle)
print(file=handle)
print("void T1MInit()", file=handle)
print("{", file=handle)