aboutsummaryrefslogtreecommitdiff
path: root/mwe/resource-manager/spritesheet.cpp
blob: 5ea4b6522f331acb25c45d7a85665b07c595f0fa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include "spritesheet.h"

#include <string>


SpriteSheet::SpriteSheet(const std::string& content){
	this->m_content = content;
}

SpriteSheet::~SpriteSheet(){
}