made tons of stuff lol

This commit is contained in:
kin fuyuki 2025-12-21 03:01:29 -03:00
commit 54c3acf092
No known key found for this signature in database
GPG key ID: 0E4E8E519FB71401
16 changed files with 450 additions and 94 deletions

View file

@ -1,6 +1,6 @@
cmake_minimum_required(VERSION 3.20)
SET(CMAKE_CXX_FLAGS "-std=c++23")
set(CMAKE_CXX_FLAGS "-std=c++17 -Wno-error")
file(GLOB_RECURSE FORESPEND_SOURCES "src/*.cpp")
add_executable(forespend ${FORESPEND_SOURCES})

View file

@ -0,0 +1 @@
#include "mainmenu.h"

View file

@ -0,0 +1,6 @@
#pragma once
#include <incmgr.h>
class mainmenu :public virtual scene{
};