Added RenderWindow files
This commit is contained in:
parent
42756d12c6
commit
bb14fa9423
|
@ -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)
|
4
SDLU/graphics/CMakeLists.txt
Normal file
4
SDLU/graphics/CMakeLists.txt
Normal file
|
@ -0,0 +1,4 @@
|
|||
target_sources(${PNAME} PRIVATE
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/RenderWindow.hpp
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/RenderWindow.cpp
|
||||
)
|
0
SDLU/graphics/RenderWindow.cpp
Normal file
0
SDLU/graphics/RenderWindow.cpp
Normal file
1
SDLU/graphics/RenderWindow.hpp
Normal file
1
SDLU/graphics/RenderWindow.hpp
Normal file
|
@ -0,0 +1 @@
|
|||
#pragma once
|
|
@ -4,7 +4,7 @@
|
|||
* @author Lauchmelder23
|
||||
* @date 16.05.2020
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
#include <type_traits>
|
||||
|
||||
namespace sdlu
|
||||
|
|
Loading…
Reference in a new issue