diff options
author | chai <chaifix@163.com> | 2019-03-04 08:59:21 +0800 |
---|---|---|
committer | chai <chaifix@163.com> | 2019-03-04 08:59:21 +0800 |
commit | c19a282e10f51ddd50d198b903f8fbd5a2238b62 (patch) | |
tree | 407cfda6ec917a86135153915a924e38f76c0553 /Source/Asura.Engine/FileSystem/Reloadable.h | |
parent | e1472104af014df0e8598f1a3f9b2496b683d6bb (diff) |
*misc
Diffstat (limited to 'Source/Asura.Engine/FileSystem/Reloadable.h')
-rw-r--r-- | Source/Asura.Engine/FileSystem/Reloadable.h | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/Source/Asura.Engine/FileSystem/Reloadable.h b/Source/Asura.Engine/FileSystem/Reloadable.h new file mode 100644 index 0000000..e07b094 --- /dev/null +++ b/Source/Asura.Engine/FileSystem/Reloadable.h @@ -0,0 +1,24 @@ +#ifndef __ASURA_ENGINE_RELOADABLE_H__ +#define __ASURA_ENGINE_RELOADABLE_H__ + +#include "Object.h" + +namespace AsuraEngine +{ + namespace Filesystem + { + + class Reloadable : virtual public Object + { + public: + Reloadable(); + ~Reloadable(); + + virtual bool Load(); + + }; + + } +} + +#endif
\ No newline at end of file |