mirror of
https://github.com/rwengine/openrw.git
synced 2024-11-07 11:22:45 +01:00
2f118631dc
This moves window setup and configuration loading into a base class so that RWGame can focus on game related matters
34 lines
602 B
C++
34 lines
602 B
C++
#ifndef RWGAME_GAMEBASE_HPP
|
|
#define RWGAME_GAMEBASE_HPP
|
|
#include "GameConfig.hpp"
|
|
#include "GameWindow.hpp"
|
|
|
|
#include <core/Logger.hpp>
|
|
|
|
#include <boost/program_options.hpp>
|
|
|
|
/**
|
|
* @brief Handles basic window and setup
|
|
*/
|
|
class GameBase {
|
|
public:
|
|
GameBase(Logger& inlog, int argc, char* argv[]);
|
|
~GameBase();
|
|
|
|
GameWindow& getWindow() {
|
|
return window;
|
|
}
|
|
|
|
const GameConfig& getConfig() const {
|
|
return config;
|
|
}
|
|
|
|
protected:
|
|
Logger& log;
|
|
GameConfig config{"openrw.ini"};
|
|
GameWindow window;
|
|
boost::program_options::variables_map options;
|
|
};
|
|
|
|
#endif
|