diff options
Diffstat (limited to 'Runtime/GUI/TextMesh.h')
-rw-r--r-- | Runtime/GUI/TextMesh.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Runtime/GUI/TextMesh.h b/Runtime/GUI/TextMesh.h index 7f37e5e..2ca4618 100644 --- a/Runtime/GUI/TextMesh.h +++ b/Runtime/GUI/TextMesh.h @@ -1,4 +1,5 @@ #pragma once
+#include "../Graphics/VertexBuffer.h"
enum ETextAnchor
{
@@ -21,4 +22,11 @@ enum ETextAlignment { TextAlignment_Auto, }; +class TextMesh +{ +public: +private: + VertexBuffer* m_VBO; + +}; |