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

#include <string>

#include "Component.h"

namespace crepe {

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

	std::string path;
};

} // namespace crepe