Added RenderWindow files

This commit is contained in:
Robert 2020-05-16 14:24:11 +02:00
parent 42756d12c6
commit bb14fa9423
5 changed files with 8 additions and 2 deletions

View file

@ -12,4 +12,5 @@ target_link_libraries(${PNAME} PRIVATE
${CMAKE_BINARY_DIR}/3rdparty/SDL/SDL2d.lib
)
add_subdirectory(structures)
add_subdirectory(structures)
add_subdirectory(graphics)

View file

@ -0,0 +1,4 @@
target_sources(${PNAME} PRIVATE
${CMAKE_CURRENT_SOURCE_DIR}/RenderWindow.hpp
${CMAKE_CURRENT_SOURCE_DIR}/RenderWindow.cpp
)

View file

View file

@ -0,0 +1 @@
#pragma once

View file

@ -4,7 +4,7 @@
* @author Lauchmelder23
* @date 16.05.2020
*/
#pragma once
#include <type_traits>
namespace sdlu