From b1fc911965c584f5af6522849162527f41461b7c Mon Sep 17 00:00:00 2001 From: AnonymousRandomPerson Date: Tue, 14 Dec 2021 23:36:22 -0500 Subject: Decomped InSameRoom_2() --- include/position.h | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 include/position.h (limited to 'include/position.h') diff --git a/include/position.h b/include/position.h new file mode 100644 index 0000000..3a24df4 --- /dev/null +++ b/include/position.h @@ -0,0 +1,16 @@ +#ifndef GUARD_POSITION_H +#define GUARD_POSITION_H + +struct Position +{ + s16 x; + s16 y; +}; + +struct Position32 +{ + s32 x; + s32 y; +}; + +#endif -- cgit v1.2.3