metaforce/DataSpec/DNACommon/Tweaks/ITweakAutoMapper.hpp

17 lines
335 B
C++
Raw Normal View History

2017-01-26 10:06:18 +00:00
#ifndef __DNACOMMON_ITWEAKAUTOMAPPER_HPP__
#define __DNACOMMON_ITWEAKAUTOMAPPER_HPP__
#include "ITweak.hpp"
namespace DataSpec
{
struct ITweakAutoMapper : public ITweak
{
virtual const zeus::CVector3f& GetDoorCenter() const=0;
2017-02-12 03:17:18 +00:00
virtual float GetCamVerticalOffset() const=0;
2017-01-26 10:06:18 +00:00
};
}
#endif // __DNACOMMON_ITWEAKAUTOMAPPER_HPP__