diff options
Diffstat (limited to 'Source/Asura.Engine/filesystem/reloadable.h')
-rw-r--r-- | Source/Asura.Engine/filesystem/reloadable.h | 27 |
1 files changed, 27 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..eb35d3e --- /dev/null +++ b/Source/Asura.Engine/filesystem/reloadable.h @@ -0,0 +1,27 @@ +#ifndef __ASURA_ENGINE_RELOADABLE_H__ +#define __ASURA_ENGINE_RELOADABLE_H__ + +#include "Scripting/Portable.h" + +namespace AsuraEngine +{ + namespace Filesystem + { + + /// + /// ¹ݽṹͼƬƵ֣ⲿݿֱӹڱ༭¹ڲıhandleԴ + /// + ASURA_ABSTRACT class Reloadable + { + public: + Reloadable(); + virtual ~Reloadable(); + + // ̳ReloadableҪṩһload + + }; + + } +} + +#endif
\ No newline at end of file |