summaryrefslogtreecommitdiff
path: root/include/d/a/d_a_fish.h
diff options
context:
space:
mode:
authorrobojumper <robojumper@gmail.com>2024-10-10 18:21:07 +0200
committerGitHub <noreply@github.com>2024-10-10 12:21:07 -0400
commit98f7e90125bf4f30e3281f41235ac95f8ea3808f (patch)
tree962c17be9494ea01971ae657491037f4193e8092 /include/d/a/d_a_fish.h
parent558db54bf44b7fe885705a6d5b513000b8d75cf6 (diff)
Set up REL templates (#60)
* Fix .data sections misidentified as .rodata by dtk dtk can't always reliably identify REL sections in its initial analysis. This is a manual fix - the list of RELs to fix was found by looking at supposed .rodata splits that contained an fBase vtable, since vtables should be in .data. This fix is required for scripted creation of REL actors based on rel .data * More consistent d/t header paths * Data fixups for parsing * Tmp actor file setup * Fixes * Set up almost all REL templates * formatting * Fix formatting
Diffstat (limited to 'include/d/a/d_a_fish.h')
-rw-r--r--include/d/a/d_a_fish.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/include/d/a/d_a_fish.h b/include/d/a/d_a_fish.h
new file mode 100644
index 00000000..39970950
--- /dev/null
+++ b/include/d/a/d_a_fish.h
@@ -0,0 +1,14 @@
+#ifndef D_A_FISH_H
+#define D_A_FISH_H
+
+#include <d/a/obj/d_a_obj_base.h>
+
+class dAcFish_c : public dAcObjBase_c {
+public:
+ dAcFish_c() {}
+ virtual ~dAcFish_c() {}
+
+private:
+};
+
+#endif