summaryrefslogtreecommitdiff
path: root/source/libs/asura-lib-utils/io/reloadable.h
diff options
context:
space:
mode:
Diffstat (limited to 'source/libs/asura-lib-utils/io/reloadable.h')
-rw-r--r--source/libs/asura-lib-utils/io/reloadable.h29
1 files changed, 29 insertions, 0 deletions
diff --git a/source/libs/asura-lib-utils/io/reloadable.h b/source/libs/asura-lib-utils/io/reloadable.h
new file mode 100644
index 0000000..22a721c
--- /dev/null
+++ b/source/libs/asura-lib-utils/io/reloadable.h
@@ -0,0 +1,29 @@
+#ifndef __ASURA_ENGINE_RELOADABLE_H__
+#define __ASURA_ENGINE_RELOADABLE_H__
+
+#include "../scripting/portable.hpp"
+
+namespace AsuraEngine
+{
+ namespace IO
+ {
+
+ ///
+ /// ¹ݽṹͼƬƵ֣ⲿݿֱӹڱ༭¹ڲıhandleԴ
+ ///
+ ASURA_ABSTRACT class Reloadable
+ {
+ public:
+ Reloadable();
+ virtual ~Reloadable();
+
+ // ̳ReloadableҪṩһload
+
+ };
+
+ }
+}
+
+namespace AEIO = AsuraEngine::IO;
+
+#endif \ No newline at end of file