mirror of
https://github.com/zeldaret/ss
synced 2026-05-24 07:10:53 -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
24 lines
837 B
C++
24 lines
837 B
C++
#ifndef S_STATEMETHODUSR_FI_H
|
|
#define S_STATEMETHODUSR_FI_H
|
|
|
|
#include "s/s_StateMethod.hpp"
|
|
|
|
// Note: Ported from https://github.com/NSMBW-Community/NSMBW-Decomp/tree/master/include/dol/sLib
|
|
// See include/s/README.txt for changes made
|
|
|
|
/// @brief An extension to sStateMethod_c that implements the remaining abstract methods.
|
|
/// @details [Name might mean "Functionality implementation"].
|
|
/// @ingroup state
|
|
class sStateMethodUsr_FI_c : public sStateMethod_c {
|
|
public:
|
|
sStateMethodUsr_FI_c(sStateIDChkIf_c &checker, sStateFctIf_c &factory, const sStateIDIf_c &initialState);
|
|
virtual ~sStateMethodUsr_FI_c();
|
|
|
|
virtual int initializeStateLocalMethod();
|
|
virtual void executeStateLocalMethod();
|
|
virtual void finalizeStateLocalMethod();
|
|
virtual void changeStateLocalMethod(const sStateIDIf_c &newStateID);
|
|
};
|
|
|
|
#endif
|