blob: 7f491565b71af73da9125490501bc6227f40a631 (
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();
};
}
|