Add LinkDamage class definition

This commit is contained in:
Aetias
2024-03-20 19:48:26 +01:00
parent bd0a74f62f
commit 29e5b949c0
12 changed files with 179 additions and 4 deletions
+13
View File
@@ -0,0 +1,13 @@
#pragma once
#include "global.h"
#include "types.h"
struct FileEntry {
/* 00 (vtable )*/
/* 04 */ void *path;
/* 08 */ unk32 mUnk_08;
/* 0c */ unk32 mUnk_0c;
/* 10 */
};
+2 -4
View File
@@ -1,6 +1,6 @@
#ifndef LIB_MATH_H
#define LIB_MATH_H
#pragma once
#include "global.h"
#include "types.h"
// Q20.12 fixed point number
@@ -33,5 +33,3 @@ extern "C" u32 Divide(u32 a, u32 b);
extern "C" bool Approach(unk32 *src, unk32 dest, unk32 step);
extern "C" bool Approach_thunk(unk32 *src, unk32 dest, unk32 step);
extern "C" bool func_01ffec34(Vec4p *param1, Vec4p *param2);
#endif
+3
View File
@@ -1,5 +1,8 @@
#pragma once
#include "global.h"
#include "types.h"
struct TouchStateFlags {
u16 touchX;
u16 touchY;