diff options
Diffstat (limited to 'Runtime')
-rw-r--r-- | Runtime/Common/DataBuffer.h | 3 | ||||
-rw-r--r-- | Runtime/GUI/TextGenerator.cpp | 3 | ||||
-rw-r--r-- | Runtime/GUI/TextGenerator.h | 10 | ||||
-rw-r--r-- | Runtime/GUI/freetype.h | 2 |
4 files changed, 18 insertions, 0 deletions
diff --git a/Runtime/Common/DataBuffer.h b/Runtime/Common/DataBuffer.h index 1d66546..74d2b02 100644 --- a/Runtime/Common/DataBuffer.h +++ b/Runtime/Common/DataBuffer.h @@ -6,6 +6,9 @@ class DataBuffer : public LuaBind::NativeClass<DataBuffer> { public: + DataBuffer() + :NativeClass<DataBuffer>() + {} DataBuffer(LuaBind::VM* vm) :NativeClass<DataBuffer>(vm) {}; diff --git a/Runtime/GUI/TextGenerator.cpp b/Runtime/GUI/TextGenerator.cpp new file mode 100644 index 0000000..802146c --- /dev/null +++ b/Runtime/GUI/TextGenerator.cpp @@ -0,0 +1,3 @@ +#include "TextGenerator.h" + + diff --git a/Runtime/GUI/TextGenerator.h b/Runtime/GUI/TextGenerator.h new file mode 100644 index 0000000..8bd9dc8 --- /dev/null +++ b/Runtime/GUI/TextGenerator.h @@ -0,0 +1,10 @@ +#pragma once + +#include "Runtime/Utilities/Singleton.h" + +class TextGenerator : public Singleton<TextGenerator> +{ +public: + + +}; diff --git a/Runtime/GUI/freetype.h b/Runtime/GUI/freetype.h new file mode 100644 index 0000000..139597f --- /dev/null +++ b/Runtime/GUI/freetype.h @@ -0,0 +1,2 @@ + + |