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

#include <string>

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

SpriteSheet::~SpriteSheet() {}