summaryrefslogtreecommitdiff
path: root/source/modules/asura-utils/io/reloadable.h
diff options
context:
space:
mode:
authorchai <chaifix@163.com>2019-03-30 21:49:29 +0800
committerchai <chaifix@163.com>2019-03-30 21:49:29 +0800
commit8164adb15b76f537f8b6c78b9992786b61d61cc8 (patch)
tree6e42919e32258a3c495dcec54b0fda3e8e1977d8 /source/modules/asura-utils/io/reloadable.h
parentc270d033fa04873ee7a8925dbb00cae5edc4555c (diff)
*misc
Diffstat (limited to 'source/modules/asura-utils/io/reloadable.h')
-rw-r--r--source/modules/asura-utils/io/reloadable.h18
1 files changed, 11 insertions, 7 deletions
diff --git a/source/modules/asura-utils/io/reloadable.h b/source/modules/asura-utils/io/reloadable.h
index 22a721c..c3b89ac 100644
--- a/source/modules/asura-utils/io/reloadable.h
+++ b/source/modules/asura-utils/io/reloadable.h
@@ -1,5 +1,5 @@
-#ifndef __ASURA_ENGINE_RELOADABLE_H__
-#define __ASURA_ENGINE_RELOADABLE_H__
+#ifndef __ASURA_ENGINE_RENEWABLE_H__
+#define __ASURA_ENGINE_RENEWABLE_H__
#include "../scripting/portable.hpp"
@@ -9,15 +9,19 @@ namespace AsuraEngine
{
///
- /// ¹ݽṹͼƬƵ֣ⲿݿֱӹڱ༭¹ڲıhandleԴ
+ /// ¹ݽṹͼƬƵ֣ӽݿֱӹڱ༭
+ /// ¹޸handleֵı䲻߱ƻԣڲıhandleԴ
///
- ASURA_ABSTRACT class Reloadable
+ ASURA_ABSTRACT class Renewable
{
public:
- Reloadable();
- virtual ~Reloadable();
+ Renewable();
+ virtual ~ Renewable();
- // ̳ReloadableҪṩһload
+ ///
+ /// ̳RenewableҪṩһRefresh
+ ///
+ virtual bool Refresh(AEIO::DecodedData* decode_data) = 0;
};