aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/Sprite.h
blob: 029064bec757dc6a742f1fbc890325a080f08c32 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#pragma once

#include <string>

#include "Component.h"

namespace crepe {

class Sprite : public Component {
public:
	Sprite(std::string path);

	std::string path;
};

}