added editor WIP

This commit is contained in:
2026-01-18 14:59:44 +01:00
parent 281e4740a8
commit dc5b58d7d3
27 changed files with 2448 additions and 1 deletions

View File

@@ -0,0 +1,16 @@
#pragma once
namespace TSE::EDITOR
{
class IGUIElement
{
protected:
bool enabled = true;
public:
virtual void Render() = 0;
inline void SetEnabled(bool state)
{
enabled = state;
};
};
} // namespace TSE::EDITOR