ok ok i made a ton of progress on theming
This commit is contained in:
parent
9ebb95135b
commit
5cbb13cf4b
14 changed files with 128 additions and 61 deletions
|
|
@ -7,7 +7,7 @@ else ()
|
|||
endif (DEFINED PLATFORMNAME)
|
||||
|
||||
|
||||
set(CMAKE_CXX_FLAGS "-std=c++26 -w -g -Wno-error -O0")
|
||||
set(CMAKE_CXX_FLAGS "-std=c++11 -w -g -Wno-error -O0")
|
||||
file(GLOB_RECURSE ENDLAUNCHER "src/*.cpp")
|
||||
add_executable(endlauncher ${ENDLAUNCHER})
|
||||
|
||||
|
|
@ -18,7 +18,8 @@ target_link_directories(
|
|||
endlauncher PUBLIC
|
||||
"${CMAKE_SOURCE_DIR}/link/${PLATFORMNAME}")
|
||||
target_link_libraries(endlauncher PRIVATE
|
||||
"${CMAKE_SOURCE_DIR}/link/${PLATFORMNAME}/libenginend.so"
|
||||
enginend
|
||||
raylib
|
||||
curl zip
|
||||
)
|
||||
target_include_directories(endlauncher PUBLIC
|
||||
|
|
|
|||
|
|
@ -1,6 +1,5 @@
|
|||
#include <incmgr.h>
|
||||
#include <raylib.h>
|
||||
#include <enginend/scenes/node2d.h>
|
||||
|
||||
#include <enginend/engine.h>
|
||||
#include "netio.h"
|
||||
#include <thread>
|
||||
#include <atomic>
|
||||
|
|
@ -119,6 +118,8 @@ public:
|
|||
const char* CONF() final{return "test.tdf";}
|
||||
launcher(){};
|
||||
void boot() override {
|
||||
currentscene = new scene{};
|
||||
|
||||
tickrate=15;
|
||||
framerate=15;
|
||||
SetConfigFlags(FLAG_WINDOW_UNDECORATED|FLAG_WINDOW_TRANSPARENT|FLAG_WINDOW_TOPMOST);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue