2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-05-14 17:51:21 +00:00
metaforce/DataSpec/DNACommon/Tweaks/ITweakAutoMapper.hpp
2017-02-11 17:17:18 -10:00

17 lines
335 B
C++

#ifndef __DNACOMMON_ITWEAKAUTOMAPPER_HPP__
#define __DNACOMMON_ITWEAKAUTOMAPPER_HPP__
#include "ITweak.hpp"
namespace DataSpec
{
struct ITweakAutoMapper : public ITweak
{
virtual const zeus::CVector3f& GetDoorCenter() const=0;
virtual float GetCamVerticalOffset() const=0;
};
}
#endif // __DNACOMMON_ITWEAKAUTOMAPPER_HPP__