mirror of
https://github.com/zeldaret/ss
synced 2026-09-10 03:52:24 -04:00
Fix includes and removed libs folder
This commit is contained in:
+7
-7
@@ -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
|
||||
|
||||
@@ -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.
|
||||
|
||||
@@ -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;
|
||||
|
||||
|
||||
@@ -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;
|
||||
|
||||
|
||||
@@ -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;
|
||||
|
||||
|
||||
@@ -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.
|
||||
|
||||
@@ -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))
|
||||
|
||||
|
||||
@@ -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.
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
#pragma once
|
||||
|
||||
#include <types.h>
|
||||
#include "types.h"
|
||||
|
||||
namespace fProfile {
|
||||
|
||||
|
||||
@@ -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;
|
||||
|
||||
|
||||
@@ -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;
|
||||
|
||||
|
||||
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user