summary refs log tree commit diff stats
path: root/src/components/static_image.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/static_image.h')
-rw-r--r--src/components/static_image.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/components/static_image.h b/src/components/static_image.h new file mode 100644 index 0000000..2dec78b --- /dev/null +++ b/src/components/static_image.h
@@ -0,0 +1,18 @@
1#ifndef STATIC_IMAGE_H
2#define STATIC_IMAGE_H
3
4#include "entity.h"
5#include "renderer.h"
6
7class Game;
8
9class StaticImageComponent : public Component {
10 public:
11 StaticImageComponent(const char* filename);
12 void render(Game& game, Entity& entity, Texture& buffer);
13
14 private:
15 Texture sprite;
16};
17
18#endif