OpenMiner/include/core/Application.hpp
Quentin Bazin fb3f7f0501 Lot of changes. [...]
[Renderer] Deleted, code moved to Application.
[Transformable] Transformations are now applied to model matrix in applyTransform.
[ResourceHandler|TextureLoader|XMLFile] Added.
[Debug|Exception] Updated.
2018-06-21 05:45:17 +02:00

29 lines
638 B
C++

/*
* =====================================================================================
*
* Filename: Application.hpp
*
* Description:
*
* Created: 14/12/2014 05:09:11
*
* Author: Quentin Bazin, <quent42340@gmail.com>
*
* =====================================================================================
*/
#ifndef APPLICATION_HPP_
#define APPLICATION_HPP_
#include "CoreApplication.hpp"
class Application : public CoreApplication {
public:
Application(int argc, char **argv) : CoreApplication(argc, argv) {}
void init() override;
void initOpenGL();
};
#endif // APPLICATION_HPP_