aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/Sprite.cpp
blob: 7f5bca7a1daa2671b443baa709be64b84e4c112e (plain)
1
2
3
4
5
6
7
8
#include <string>

#include "Sprite.h"

using namespace crepe;
using namespace std;

Sprite::Sprite(uint32_t gameObjectId, string path) : Component(gameObjectId), path(path) {}