Skip to content
Snippets Groups Projects
Commit 7ff2bc5e authored by Gabor Galgoczy's avatar Gabor Galgoczy
Browse files

Restructure folders

parent eda7add9
No related branches found
No related tags found
No related merge requests found
File added
File moved
File moved
File moved
File moved
#pragma once #pragma once
#include "Renderer.hpp"
#include "Window.hpp"
class App { class App {
public: public:
void run(); void run();
private:
Renderer m_renderer;
Window m_window;
}; };
target_sources(${PROJECT_NAME} PRIVATE target_sources(${PROJECT_NAME} PRIVATE
App.cpp App.cpp
main.cpp main.cpp
Renderer.cpp
Window.cpp
) )
\ No newline at end of file
File moved
#include "Renderer.hpp"
#pragma once
class Renderer {};
#include "Window.hpp"
#pragma once
class Window {};
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment