33 #ifndef DC_H_DECODER_INCLUDED
34 #define DC_H_DECODER_INCLUDED
36 #include <Dynacoe/Modules/Assets.h>
46 virtual Asset * operator()(
47 const std::string & name,
48 const std::string & extension,
49 const uint8_t * buffer,
54 Decoder(
Assets::Type type_,
const std::vector<std::string> & extensions_)
55 : type(type_), exts(extensions_){};
58 std::vector<std::string> GetExtensions()
const {
return exts;}
62 std::vector<std::string> exts;
Type
A classification of individual Assets.
Definition: Assets.h:102