blob: 580f82558a93e0a5d2f6e3cfe80849b43fe9e979 (
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(std::string path);
std::string path;
};
} // namespace crepe::api
|