blob: 9fd08085749a64a33777a4b9eb691499cc3ac5cc (
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/Scripting.h"
namespace AsuraEngine
{
namespace FileSystem
{
class Compressor ASURA_FINAL
: public AEScripting::Portable<Compressor>
{
public:
LUAX_DECL_SINGLETON(Compressor);
private:
LUAX_DECL_METHOD(_Compress);
LUAX_DECL_METHOD(_Decompress);
};
}
}
#endif
|