mirror of https://github.com/AxioDL/metaforce.git
18 lines
317 B
C++
18 lines
317 B
C++
#ifndef __DNACOMMON_ITWEAKPLAYER_HPP__
|
|
#define __DNACOMMON_ITWEAKPLAYER_HPP__
|
|
|
|
#include "../DNACommon.hpp"
|
|
|
|
namespace DataSpec
|
|
{
|
|
|
|
struct ITweakPlayer : BigYAML
|
|
{
|
|
virtual float GetLeftLogicalThreshold() const=0;
|
|
virtual float GetRightLogicalThreshold() const=0;
|
|
};
|
|
|
|
}
|
|
|
|
#endif // __DNACOMMON_ITWEAKPLAYER_HPP__
|