2015-08-28 00:11:31 +00:00
|
|
|
#ifndef _DNAMP1_CTWEAKPLAYERCONTROL_HPP_
|
|
|
|
#define _DNAMP1_CTWEAKPLAYERCONTROL_HPP_
|
|
|
|
|
|
|
|
#include "../../DNACommon/Tweaks/ITweakPlayerControl.hpp"
|
|
|
|
|
2017-12-29 08:08:12 +00:00
|
|
|
namespace DataSpec::DNAMP1
|
2015-08-28 00:11:31 +00:00
|
|
|
{
|
|
|
|
|
2017-08-27 03:02:18 +00:00
|
|
|
struct CTweakPlayerControl final : ITweakPlayerControl
|
2015-08-28 00:11:31 +00:00
|
|
|
{
|
2018-02-22 07:24:51 +00:00
|
|
|
AT_DECL_DNA_YAML
|
2017-04-15 05:32:25 +00:00
|
|
|
Vector<atUint32, DNA_COUNT(67)> m_mappings;
|
2015-08-28 00:11:31 +00:00
|
|
|
atUint32 GetMapping(atUint32 command) const {return m_mappings[command];}
|
2017-01-26 10:06:18 +00:00
|
|
|
CTweakPlayerControl() = default;
|
2016-03-04 23:04:53 +00:00
|
|
|
CTweakPlayerControl(athena::io::IStreamReader& reader) {this->read(reader);}
|
2015-08-28 00:11:31 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // _DNAMP1_CTWEAKPLAYERCONTROL_HPP_
|