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
20 lines
514 B
C++
20 lines
514 B
C++
#ifndef S_STATEIDCHK_H
|
|
#define S_STATEIDCHK_H
|
|
|
|
#include "s/s_StateInterfaces.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 A default implementation of a state ID checker.
|
|
/// @details ::isNormalID always returns true.
|
|
class sStateIDChk_c : public sStateIDChkIf_c {
|
|
public:
|
|
virtual ~sStateIDChk_c();
|
|
virtual bool isNormalID(const sStateIDIf_c &) const {
|
|
return true;
|
|
}
|
|
};
|
|
|
|
#endif
|