2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-22 00:59:12 +00:00
This commit is contained in:
Jack Andersen
2016-12-24 15:36:57 -10:00
24 changed files with 102 additions and 473 deletions

View File

@@ -8,10 +8,13 @@ namespace DataSpec
struct ITweakGame : BigYAML
{
virtual const std::string& GetWorldPrefix() const=0;
virtual float GetFirstPersonFOV() const =0;
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