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

View File

@@ -0,0 +1,17 @@
#pragma once
#include <VE.hpp>
namespace example
{
class ui_layer : public VE::layer, public VE::flags, public VE::connector
{
VE_OVERIDE();
VE_EVENT_OVERIDE();
ImVec2 m_size = ImVec2{ 1200.f, 400.f };
ImVec2 m_pos = ImVec2{ 1200.f, 400.f };
std::string m_key;
};
}