fix some struct

This commit is contained in:
2025-04-08 15:31:06 +03:00
parent 1ab87dd53d
commit b182e35728
6 changed files with 16 additions and 54 deletions

View File

@@ -1,6 +1,6 @@
#include "layers/ui_layer/ui_layer.hpp"
namespace sandbox
namespace example
{
class app : public VE::application
{
@@ -12,10 +12,10 @@ namespace sandbox
auto main(int argc, char* args[]) -> int
{
sandbox::app app{ "vertex_engine_sandbox" };
example::app app{ "vertex_engine_sandbox" };
app.push_layer(
new sandbox::ui_layer{}
new example::ui_layer{}
);
app.run();
}