blob: ff4430387275b46df14cd2258f3abb6a9ea545b3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
#ifndef __ASURA_ENGINE_RENEWABLE_H__
#define __ASURA_ENGINE_RENEWABLE_H__
#include "DecodedData.h"
namespace AsuraEngine
{
namespace FileSystem
{
///
/// ¹ݽṹͼƬƵ֣ӽݿֱӹڱ༭
/// ¹handleֵı䲻߱ƻԣڲıhandleԴ
///
ASURA_ABSTRACT class Renewable
{
public:
Renewable() {};
virtual ~Renewable() {};
};
}
}
namespace AEFileSystem = AsuraEngine::FileSystem;
#endif
|