summaryrefslogtreecommitdiff
path: root/include/f
diff options
context:
space:
mode:
authorElijah Thomas <elijahthomas774@gmail.com>2023-10-06 07:49:50 -0400
committerElijah Thomas <elijahthomas774@gmail.com>2023-10-06 07:49:50 -0400
commit4ae5fe5753537264872e09562acb2e853dd41850 (patch)
tree079b314512b286f666376a05abaafbb49b0c99f9 /include/f
parent99d473d1aaecbd343871793e1c2002c89f08e227 (diff)
Fix includes and removed libs folder
Diffstat (limited to 'include/f')
-rw-r--r--include/f/f_base.h14
-rw-r--r--include/f/f_helper_unk.h2
-rw-r--r--include/f/f_list_mg.h10
-rw-r--r--include/f/f_list_mg_ptmf.h6
-rw-r--r--include/f/f_list_nd.h4
-rw-r--r--include/f/f_list_nd_prio.h6
-rw-r--r--include/f/f_manager.h16
-rw-r--r--include/f/f_profile.h2
-rw-r--r--include/f/f_profile_name.h2
-rw-r--r--include/f/f_tree_mg.h6
-rw-r--r--include/f/f_tree_mg_ptmf.h6
-rw-r--r--include/f/f_tree_nd.h6
12 files changed, 40 insertions, 40 deletions
diff --git a/include/f/f_base.h b/include/f/f_base.h
index a010cecd..76be2c8b 100644
--- a/include/f/f_base.h
+++ b/include/f/f_base.h
@@ -3,13 +3,13 @@
// This file is adapted from https://github.com/NSMBW-Community/NSMBW-Decomp/blob/master/include/dol/framework/f_base.hpp
// and the Skyward Sword Ghidra database. Comments and docs can be seen above. stripped in this file for easier looking
-#include <types.h>
-#include <egg/core/eggFrmHeap.h>
-#include <f/f_profile.h>
-#include <f/f_base_id.h>
-#include <f/f_helper_unk.h>
-#include <f/f_manager.h>
-#include <f/f_list_mg.h>
+#include "types.h"
+#include "egg/core/eggFrmHeap.h"
+#include "f/f_profile.h"
+#include "f/f_base_id.h"
+#include "f/f_helper_unk.h"
+#include "f/f_manager.h"
+#include "f/f_list_mg.h"
// Ghidra: fBase
// size: 0x64
diff --git a/include/f/f_helper_unk.h b/include/f/f_helper_unk.h
index 8133099f..d25f927a 100644
--- a/include/f/f_helper_unk.h
+++ b/include/f/f_helper_unk.h
@@ -2,7 +2,7 @@
// This file was ported from https://github.com/NSMBW-Community/NSMBW-Decomp/blob/master/include/dol/framework/f_helper_unk.hpp
-#include <types.h>
+#include "types.h"
/// @brief [A helper class for fBase_c with unknown purpose].
/// @note Unofficial name.
diff --git a/include/f/f_list_mg.h b/include/f/f_list_mg.h
index 85dd7022..55529b22 100644
--- a/include/f/f_list_mg.h
+++ b/include/f/f_list_mg.h
@@ -2,11 +2,11 @@
// This file was ported from https://github.com/NSMBW-Community/NSMBW-Decomp/blob/master/include/dol/framework/f_list_mg.hpp
-#include <types.h>
-#include <f/f_profile.h>
-#include <c/c_list.h>
-#include <f/f_base_id.h>
-#include <f/f_list_nd.h>
+#include "types.h"
+#include "f/f_profile.h"
+#include "c/c_list.h"
+#include "f/f_base_id.h"
+#include "f/f_list_nd.h"
class fBase_c;
diff --git a/include/f/f_list_mg_ptmf.h b/include/f/f_list_mg_ptmf.h
index 472f4f82..e2f197c9 100644
--- a/include/f/f_list_mg_ptmf.h
+++ b/include/f/f_list_mg_ptmf.h
@@ -2,10 +2,10 @@
// This file was ported from https://github.com/NSMBW-Community/NSMBW-Decomp/blob/master/include/dol/framework/f_list_mg_ptmf.hpp
-#include <types.h>
+#include "types.h"
-#include <f/f_list_mg.h>
-#include <f/f_list_nd_prio.h>
+#include "f/f_list_mg.h"
+#include "f/f_list_nd_prio.h"
class fBase_c;
diff --git a/include/f/f_list_nd.h b/include/f/f_list_nd.h
index 23f4ad14..14d5f6f4 100644
--- a/include/f/f_list_nd.h
+++ b/include/f/f_list_nd.h
@@ -2,8 +2,8 @@
// This file was ported from https://github.com/NSMBW-Community/NSMBW-Decomp/blob/master/include/dol/framework/f_list_nd.hpp
-#include <types.h>
-#include <c/c_list.h>
+#include "types.h"
+#include "c/c_list.h"
class fBase_c;
diff --git a/include/f/f_list_nd_prio.h b/include/f/f_list_nd_prio.h
index 0ccf5538..d5bc5c2f 100644
--- a/include/f/f_list_nd_prio.h
+++ b/include/f/f_list_nd_prio.h
@@ -2,9 +2,9 @@
// This file was ported from https://github.com/NSMBW-Community/NSMBW-Decomp/blob/master/include/dol/framework/f_list_nd_prio.hpp
-#include <types.h>
-#include <f/f_profile.h>
-#include <f/f_list_nd.h>
+#include "types.h"
+#include "f/f_profile.h"
+#include "f/f_list_nd.h"
/// @brief A list node with priority fields for an order in a list.
/// @note Unofficial name.
diff --git a/include/f/f_manager.h b/include/f/f_manager.h
index 4b3c9e2e..8809ace4 100644
--- a/include/f/f_manager.h
+++ b/include/f/f_manager.h
@@ -2,14 +2,14 @@
// this file was ported from https://github.com/NSMBW-Community/NSMBW-Decomp/blob/master/include/dol/framework/f_manager.hpp
-#include <f/f_base_id.h>
-#include <f/f_list_mg_ptmf.h>
-#include <f/f_list_mg.h>
-#include <f/f_list_nd.h>
-#include <f/f_list_nd_prio.h>
-#include <f/f_tree_mg_ptmf.h>
-#include <f/f_tree_nd.h>
-#include <f/f_profile.h>
+#include "f/f_base_id.h"
+#include "f/f_list_mg_ptmf.h"
+#include "f/f_list_mg.h"
+#include "f/f_list_nd.h"
+#include "f/f_list_nd_prio.h"
+#include "f/f_tree_mg_ptmf.h"
+#include "f/f_tree_nd.h"
+#include "f/f_profile.h"
#define GET_PROC_FLAG(proc) (1 << (proc - 1))
diff --git a/include/f/f_profile.h b/include/f/f_profile.h
index 442ac20e..8b5aaf52 100644
--- a/include/f/f_profile.h
+++ b/include/f/f_profile.h
@@ -2,7 +2,7 @@
// Ported from https://github.com/NSMBW-Community/NSMBW-Decomp/blob/master/include/dol/framework/f_profile.hpp
-#include <f/f_profile_name.h>
+#include "f/f_profile_name.h"
/// @brief Creates a profile of a base with given values for execute and draw order.
diff --git a/include/f/f_profile_name.h b/include/f/f_profile_name.h
index 6d382a6c..5de6481b 100644
--- a/include/f/f_profile_name.h
+++ b/include/f/f_profile_name.h
@@ -1,6 +1,6 @@
#pragma once
-#include <types.h>
+#include "types.h"
namespace fProfile {
diff --git a/include/f/f_tree_mg.h b/include/f/f_tree_mg.h
index dbdede5a..87ef7814 100644
--- a/include/f/f_tree_mg.h
+++ b/include/f/f_tree_mg.h
@@ -2,9 +2,9 @@
// This file was ported from https://github.com/NSMBW-Community/NSMBW-Decomp/blob/master/include/dol/framework/f_tree_mg.hpp
-#include <types.h>
-#include <c/c_tree.h>
-#include <f/f_profile.h>
+#include "types.h"
+#include "c/c_tree.h"
+#include "f/f_profile.h"
class fTrNdBa_c;
diff --git a/include/f/f_tree_mg_ptmf.h b/include/f/f_tree_mg_ptmf.h
index 15474941..ed0e0d91 100644
--- a/include/f/f_tree_mg_ptmf.h
+++ b/include/f/f_tree_mg_ptmf.h
@@ -2,9 +2,9 @@
// This file was ported from https://github.com/NSMBW-Community/NSMBW-Decomp/blob/master/include/dol/framework/f_tree_mg_ptmf.hpp
-#include <types.h>
-#include <c/c_tree.h>
-#include <f/f_tree_mg.h>
+#include "types.h"
+#include "c/c_tree.h"
+#include "f/f_tree_mg.h"
class fBase_c;
diff --git a/include/f/f_tree_nd.h b/include/f/f_tree_nd.h
index 17628306..8aad0725 100644
--- a/include/f/f_tree_nd.h
+++ b/include/f/f_tree_nd.h
@@ -2,9 +2,9 @@
// This file was ported from https://github.com/NSMBW-Community/NSMBW-Decomp/blob/master/include/dol/framework/f_tree_nd.hpp
-#include <types.h>
-#include <c/c_tree.h>
-#include <f/f_profile.h>
+#include "types.h"
+#include "c/c_tree.h"
+#include "f/f_profile.h"
class fBase_c;