Files
TSE/TSE_Editor/src/UI/base/IGUIElement.hpp
2026-01-18 14:59:44 +01:00

17 lines
284 B
C++

#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