diff options
Diffstat (limited to 'src/crepe/api/Image_asset.h')
-rw-r--r-- | src/crepe/api/Image_asset.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/crepe/api/Image_asset.h b/src/crepe/api/Image_asset.h new file mode 100644 index 0000000..69549af --- /dev/null +++ b/src/crepe/api/Image_asset.h @@ -0,0 +1,18 @@ +#pragma once + + + +#include "resource.h" +#include <string> + +namespace crepe::api { + + +class Texture : public Resource { + +public: + Texture(const std::string&); + ~Texture(); +}; + +} |