mirror of
https://github.com/GabsPuNs/Project-Zenith-Main.git
synced 2026-07-10 12:28:47 +00:00
17 lines
327 B
C++
17 lines
327 B
C++
#pragma once
|
|
|
|
#include "../../Include/RmlUi/Core/ElementDocument.h"
|
|
|
|
namespace Rml {
|
|
namespace Debugger {
|
|
|
|
class ElementDebugDocument : public ElementDocument {
|
|
public:
|
|
RMLUI_RTTI_DefineWithParent(ElementDebugDocument, ElementDocument)
|
|
|
|
ElementDebugDocument(const String& tag);
|
|
};
|
|
|
|
} // namespace Debugger
|
|
} // namespace Rml
|