aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/api/spritesheet.h
blob: e7530c2d187c4fce4cf2fe90060223ce9d333b00 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#pragma once




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


namespace crepe::api {



class SpriteSheet : public Resource{

public:
	SpriteSheet(const std::string&);
	~SpriteSheet();

};
}