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-03-20 05:09:53 +00:00
|
|
|
virtual float GetX28() const=0;
|
|
|
|
virtual float GetX2C() const=0;
|
|
|
|
virtual float GetX30() const=0;
|
|
|
|
virtual float GetAlphaSurfaceVisited() const=0;
|
|
|
|
virtual float GetAlphaOutlineVisited() const=0;
|
|
|
|
virtual float GetAlphaSurfaceUnvisited() const=0;
|
|
|
|
virtual float GetAlphaOutlineUnvisited() const=0;
|
|
|
|
virtual float GetMiniMapViewportWidth() const=0;
|
|
|
|
virtual float GetMiniMapViewportHeight() const=0;
|
2017-01-26 10:06:18 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#endif // __DNACOMMON_ITWEAKAUTOMAPPER_HPP__
|