blob: f06c5f45a0637f42d095ba868b01dc0cebc0cc40 (
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
|
#ifndef _ASURA_COMPRESSOR_H_
#define _ASURA_COMPRESSOR_H_
#include "../Scripting/Scripting.h"
namespace_begin(AsuraEngine)
namespace_begin(FileSystem)
class Compressor ASURA_FINAL
: public AEScripting::Portable<Compressor>
{
public:
LUAX_DECL_SINGLETON(Compressor);
private:
LUAX_DECL_METHOD(_Compress);
LUAX_DECL_METHOD(_Decompress);
};
namespace_end
namespace_end
#endif
|