summaryrefslogtreecommitdiff
path: root/Source/modules/asura-base/FileSystem/Renewable.h
blob: 1be3a888fdc59050c594278b16a53274355b025f (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
#ifndef __ASURA_ENGINE_RENEWABLE_H__
#define __ASURA_ENGINE_RENEWABLE_H__

#include "DecodedData.h"

namespace_begin(AsuraEngine)
namespace_begin(FileSystem)

///
/// ¹ݽṹͼƬƵ֣ӽݿֱӹڱ༭
/// ¹޸handleֵı䲻߱ƻԣڲıhandleԴ
///
ASURA_ABSTRACT class  Renewable
{
public:
		Renewable() {};
		virtual ~Renewable() {};
};

namespace_end
namespace_end

namespace AEFileSystem = AsuraEngine::FileSystem;

#endif