metaforce/DataSpec/DNACommon/Tweaks/ITweakGame.hpp

21 lines
493 B
C++
Raw Normal View History

#ifndef __DNACOMMON_ITWEAKGAME_HPP__
#define __DNACOMMON_ITWEAKGAME_HPP__
2017-01-21 06:03:37 +00:00
#include "ITweak.hpp"
2016-02-13 09:02:47 +00:00
namespace DataSpec
{
2017-01-21 06:03:37 +00:00
struct ITweakGame : ITweak
{
virtual const std::string& GetWorldPrefix() const = 0;
virtual bool GetSplashScreensDisabled() const = 0;
virtual float GetFirstPersonFOV() const = 0;
virtual float GetPressStartDelay() const = 0;
virtual float GetHardModeDamageMultiplier() const = 0;
virtual float GetHardModeWeaponMultiplier() const = 0;
};
}
#endif