just adding more missing stuf

This commit is contained in:
kin fuyuki 2025-12-29 14:05:05 -03:00
commit fd099c84ca
No known key found for this signature in database
GPG key ID: 0E4E8E519FB71401
9 changed files with 59 additions and 15 deletions

View file

@ -1,3 +1,31 @@
//
// Created by komi on 12/25/25.
//
#include "configmenu.h"
#include <enginend/scenes/node2d.h>
Font forefont;
enginend::group mainpage= enginend::group(
{
new enginend::nodes::labeledbutton("graphics",nullptr,{255,127,0,255},{0,0,0,0},100,100,0,0,std::function<void()>([]() {
}),forefont,32),
}
);
enginend::group graphics= enginend::group(
{
}
);
enginend::group sound= enginend::group(
{
}
);
enginend::group controls= enginend::group(
{
}
);
void initconfigmenu() {
forefont=LoadFont(AT("res/fonts/dos.fnt"));
}