fix run and examples folred

This commit is contained in:
2026-02-26 09:36:24 +03:00
parent c5e5224755
commit fcb2d78aae
11 changed files with 4 additions and 25 deletions

23
bin/main.cpp Executable file
View File

@@ -0,0 +1,23 @@
#include "layers/ui_layer/ui_layer.hpp"
#include "layers/ui_layer_double/ui_layer_double.hpp"
namespace example
{
class app : public VE::application
{
public:
app(std::string app_name) : VE::application{ app_name } {};
~app() = default;
};
}
auto main(int argc, char* args[]) -> int
{
example::app app{ "vertex_engine_sandbox" };
app.push_layer(
new example::ui_layer{},
new example::ui_layer_double{}
);
app.run();
}