aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/api/Sprite.h
blob: 28078cda15d8df0490e8f3ca2fb9bf2bd840aed1 (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
#pragma once

#include <SDL2/SDL_rect.h>
#include <cstdint>
#include <memory>

#include "api/Color.h"
#include "api/Texture.h"

#include "Component.h"

namespace crepe {

struct FlipSettings {
	bool flip_x = 1;
	bool flip_y = 1;
};

class Sprite : public Component {

public:
	Sprite(game_object_id_t 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