OpenMiner/include/core/Application.hpp

29 lines
638 B
C++
Raw Normal View History

2014-12-15 16:47:30 +01:00
/*
* =====================================================================================
*
* Filename: Application.hpp
*
2018-06-05 01:24:54 +02:00
* Description:
2014-12-15 16:47:30 +01:00
*
* Created: 14/12/2014 05:09:11
*
* Author: Quentin Bazin, <quent42340@gmail.com>
2014-12-15 16:47:30 +01:00
*
* =====================================================================================
*/
#ifndef APPLICATION_HPP_
#define APPLICATION_HPP_
#include "CoreApplication.hpp"
2014-12-15 16:47:30 +01:00
class Application : public CoreApplication {
2014-12-15 16:47:30 +01:00
public:
Application(int argc, char **argv) : CoreApplication(argc, argv) {}
2018-06-05 01:24:54 +02:00
void init() override;
2018-06-05 01:24:54 +02:00
void initOpenGL();
2014-12-15 16:47:30 +01:00
};
#endif // APPLICATION_HPP_