aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/api/Sprite.h
blob: c06e76c81e2d4e57ff5aeb317deb22a17aab43ef (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::api {

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

	std::string path;
};

} // namespace crepe::api