diff options
author | chai <chaifix@163.com> | 2021-11-01 19:30:44 +0800 |
---|---|---|
committer | chai <chaifix@163.com> | 2021-11-01 19:30:44 +0800 |
commit | 4b652abe1d76f1bcbe5d7583a8986256f50c483d (patch) | |
tree | daf81888f8e37c40483fcd309201bc33471b97fa /Runtime/GUI/TextMeshGenerator.h | |
parent | b7310c9cce95bfc9bfe135063ee0e97fbc654928 (diff) |
-LuaBindClass::RegisterNativeClass
Diffstat (limited to 'Runtime/GUI/TextMeshGenerator.h')
-rw-r--r-- | Runtime/GUI/TextMeshGenerator.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/Runtime/GUI/TextMeshGenerator.h b/Runtime/GUI/TextMeshGenerator.h new file mode 100644 index 0000000..c5992bd --- /dev/null +++ b/Runtime/GUI/TextMeshGenerator.h @@ -0,0 +1,20 @@ +#pragma once
+
+#include "Runtime/Utilities/IIncrementalTask.h"
+
+// 回收长期没有被使用的text mesh
+class GraduallyReleaseTextMesh : public IIncrementalTask
+{
+public:
+ void Execute() override
+ {
+
+ }
+
+ bool IsDone() override
+ {
+
+ }
+
+};
+
|