mirror of
https://github.com/devZoGok/vb01.git
synced 2026-08-26 19:43:30 +00:00
16 lines
251 B
C++
16 lines
251 B
C++
#ifndef ABSTRACT_ASSET_READER_H
|
|
#define ABSTRACT_ASSET_READER_H
|
|
|
|
#include "asset.h"
|
|
|
|
namespace vb01{
|
|
class AbstractAssetReader{
|
|
public:
|
|
virtual Asset* readAsset(std::string){return nullptr;}
|
|
protected:
|
|
AbstractAssetReader(){}
|
|
};
|
|
}
|
|
|
|
#endif
|