mirror of
https://github.com/PrimeDecomp/prime.git
synced 2025-12-15 14:46:07 +00:00
26
include/MetroidPrime/Tweaks/CTweakPlayerControl.hpp
Normal file
26
include/MetroidPrime/Tweaks/CTweakPlayerControl.hpp
Normal file
@@ -0,0 +1,26 @@
|
||||
#ifndef _CTWEAKPLAYERCONTROL
|
||||
#define _CTWEAKPLAYERCONTROL
|
||||
|
||||
#include "MetroidPrime/Tweaks/ITweakObject.hpp"
|
||||
|
||||
#include "MetroidPrime/CControlMapper.hpp"
|
||||
|
||||
#include "Kyoto/TOneStatic.hpp"
|
||||
|
||||
#include "rstl/reserved_vector.hpp"
|
||||
|
||||
class CInputStream;
|
||||
class CTweakPlayerControl;
|
||||
|
||||
class CTweakPlayerControl : public ITweakObject, public TOneStatic< CTweakPlayerControl > {
|
||||
public:
|
||||
CTweakPlayerControl(CInputStream&);
|
||||
~CTweakPlayerControl() override;
|
||||
|
||||
ControlMapper::EFunctionList GetMapping(ControlMapper::ECommands command) const;
|
||||
|
||||
private:
|
||||
rstl::reserved_vector<ControlMapper::EFunctionList, 67> m_mappings;
|
||||
};
|
||||
|
||||
#endif // _CTWEAKPLAYERCONTROL
|
||||
Reference in New Issue
Block a user