aboutsummaryrefslogtreecommitdiff
path: root/mwe/resource-manager/Image_asset.h
blob: 19579de6f402ac178b5e7a5796069455cc41054b (plain)
1
2
3
4
5
6
7
8
9
10
11
#pragma once

#include "resource.h"
#include <string>

class Texture : public Resource {

public:
	Texture(const std::string &);
	~Texture();
};