2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-05-13 21:11:21 +00:00
metaforce/Runtime/AutoMapper/ITweakAutoMapper.hpp

18 lines
337 B
C++

#ifndef __URDE_ITWEAKAUTOMAPPER_HPP__
#define __URDE_ITWEAKAUTOMAPPER_HPP__
#include "zeus/CVector3f.hpp"
#include "ITweak.hpp"
namespace urde
{
class ITweakAutoMapper : public ITweak
{
public:
virtual ~ITweakAutoMapper() {}
virtual const zeus::CVector3f& GetDoorCenter() const=0;
};
}
#endif // __URDE_ITWEAKAUTOMAPPER_HPP__