blob: f42a78220f7722bd1548449842d45b0983c78e9c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#include "spritesheet.h"
#include <string>
using namespace crepe::api;
SpriteSheet::SpriteSheet(const std::string& content){
this->m_content = content;
}
SpriteSheet::~SpriteSheet(){
}
|