mirror of
https://github.com/zeldaret/ss
synced 2026-05-24 15:20:58 -04:00
26af4db82d
* update from dtk-template and start work towards using clangd * include <a> -> "a" * Update build.yml * remove/add non-trivial class in union warning
30 lines
801 B
C++
30 lines
801 B
C++
#ifndef F_HELPER_UNK_H
|
|
#define F_HELPER_UNK_H
|
|
|
|
// This file was ported from
|
|
// https://github.com/NSMBW-Community/NSMBW-Decomp/blob/master/include/dol/framework/f_helper_unk.hpp
|
|
|
|
#include "common.h"
|
|
|
|
/// @brief [A helper class for fBase_c with unknown purpose].
|
|
/// @note Unofficial name.
|
|
class fBaHelper_c {
|
|
s16 mStatus;
|
|
s16 mCount;
|
|
void **mpArr;
|
|
void *filler1;
|
|
s16 filler2;
|
|
s16 mUnknown;
|
|
|
|
virtual void vf_0x8(); ///< [Stripped out of binary].
|
|
virtual int vf_0xc(void *); ///< [Stripped out of binary].
|
|
virtual void vf_0x10(void *); ///< [Stripped out of binary].
|
|
|
|
public:
|
|
void Delete(); ///< @todo Document this method.
|
|
int Load(int); ///< @todo Document this method.
|
|
bool LoadOnlyOne(); ///< @todo Document this method.
|
|
};
|
|
|
|
#endif
|