diff options
Diffstat (limited to 'src/crepe/api/Sprite.h')
-rw-r--r-- | src/crepe/api/Sprite.h | 24 |
1 files changed, 19 insertions, 5 deletions
diff --git a/src/crepe/api/Sprite.h b/src/crepe/api/Sprite.h index c06e76c..920f91e 100644 --- a/src/crepe/api/Sprite.h +++ b/src/crepe/api/Sprite.h @@ -1,16 +1,30 @@ #pragma once -#include <string> +#include "Component.h" +#include "api/Color.h" +#include "api/Texture.h" +#include <SDL2/SDL_rect.h> +#include <cstdint> +#include <memory> -#include "../Component.h" namespace crepe::api { +struct flip_settings{ + bool flip_x: 1; + bool flip_y : 1; +}; class Sprite : public Component { + public: - Sprite(uint32_t gameObjectId,std::string path); + Sprite(std::shared_ptr<Texture> image, const Color& color, const flip_settings& flip ); + ~Sprite(); + std::shared_ptr<Texture> sprite_image; + Color color; + flip_settings flip; + uint8_t sorting_in_layer; + uint8_t order_in_layer; - std::string path; }; -} // namespace crepe::api +} |