summaryrefslogtreecommitdiff
path: root/Runtime
diff options
context:
space:
mode:
authorchai <chaifix@163.com>2021-11-01 19:39:34 +0800
committerchai <chaifix@163.com>2021-11-01 19:39:34 +0800
commita11097e51fcaef4488218411f2d7b3ee34550000 (patch)
tree8ac19acb51db4219307de6ca0599ac2f7b64345f /Runtime
parentdf04bd14a8ec2ea4d958c47f69f5f2010efa5c6c (diff)
*Text Mesh
Diffstat (limited to 'Runtime')
-rw-r--r--Runtime/GUI/TextMesh.h8
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;
+
+};