mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-05-14 14:31:22 +00:00
18 lines
275 B
C++
18 lines
275 B
C++
#ifndef __DNACOMMON_ITWEAKGAME_HPP__
|
|
#define __DNACOMMON_ITWEAKGAME_HPP__
|
|
|
|
#include "../DNACommon.hpp"
|
|
|
|
namespace DataSpec
|
|
{
|
|
|
|
struct ITweakGame : BigYAML
|
|
{
|
|
virtual const std::string& GetWorldPrefix() const=0;
|
|
virtual float GetFirstPersonFOV() const =0;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|