blob: b06125e15599d65824085355c2c40f0fca88e60d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
  | 
#pragma once
#include <SDL2/SDL_rect.h>
#include <cstdint>
#include <memory>
#include "api/Color.h"
#include "api/Texture.h"
#include "Component.h"
namespace crepe::api {
struct FlipSettings {
	bool flip_x = 1;
	bool flip_y = 1;
};
class Sprite : public Component {
public:
	Sprite(uint32_t game_id, std::shared_ptr<Texture> image,
		   const Color & color, const FlipSettings & flip);
	~Sprite();
	std::shared_ptr<Texture> sprite_image;
	Color color;
	FlipSettings flip;
	uint8_t sorting_in_layer;
	uint8_t order_in_layer;
};
} // namespace crepe::api
 
  |