#ifndef _DNAMP1_CTWEAKPLAYER_HPP_ #define _DNAMP1_CTWEAKPLAYER_HPP_ #include "../../DNACommon/Tweaks/ITweakPlayer.hpp" namespace DataSpec { namespace DNAMP1 { struct CTweakPlayer : ITweakPlayer { DECL_YAML Value m_playerHeight; Value m_playerXYHalfExtent; Value m_unk1; Value m_unk2; Value m_unk3; Value m_leftDiv; Value m_rightDiv; float GetPlayerHeight() const { return m_playerHeight; } float GetPlayerXYHalfExtent() const { return m_playerXYHalfExtent; } float GetPlayerSomething1() const { return m_unk1; } float GetPlayerSomething2() const { return m_unk2; } float GetPlayerSomething3() const { return m_unk3; } float GetLeftLogicalThreshold() const {return m_leftDiv;} float GetRightLogicalThreshold() const {return m_rightDiv;} CTweakPlayer(athena::io::IStreamReader& reader) {this->read(reader);} }; } } #endif // _DNAMP1_CTWEAKPLAYER_HPP_