Files
wc3re/ShapDecoder.hh

19 lines
254 B
C++

#ifndef WC3RE_SHAPDECODER_HH__
#define WC3RE_SHAPDECODER_HH__
#include <cstddef>
class Resource;
class ShapDecoder {
public:
ShapDecoder(Resource::Handle res);
ShapDecoder(std::string const& path);
private:
Resource::Handle res_;
};
#endif