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

#include "Sprite.h"

using namespace crepe::api;
using namespace std;

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