mirror of https://github.com/AxioDL/metaforce.git
16 lines
285 B
C++
16 lines
285 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;
|
||
|
};
|
||
|
}
|
||
|
|
||
|
|
||
|
#endif // __DNACOMMON_ITWEAKAUTOMAPPER_HPP__
|