2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-16 14:17:02 +00:00

Various AutoMapper stubs

This commit is contained in:
2016-07-29 10:00:23 -07:00
parent 62ce5286fe
commit 1ee38df1ba
13 changed files with 475 additions and 5 deletions

View File

@@ -0,0 +1,17 @@
#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__