blob: dc25e2a13d90bcd0139b8800bad7aac50f5264e8 (
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
28
|
#ifndef _ASURA_COMPRESSOR_H_
#define _ASURA_COMPRESSOR_H_
#include "../Scripting/Portable.hpp"
namespace AsuraEngine
{
namespace IO
{
class Compressor ASURA_FINAL
: public AEScripting::Portable<Compressor>
{
public:
LUAX_DECL_SINGLETON(Compressor);
private:
LUAX_DECL_METHOD(_Compress);
LUAX_DECL_METHOD(_Decompress);
};
}
}
#endif
|