aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/facade/SdlContext.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/crepe/facade/SdlContext.h')
-rw-r--r--src/crepe/facade/SdlContext.h15
1 files changed, 12 insertions, 3 deletions
diff --git a/src/crepe/facade/SdlContext.h b/src/crepe/facade/SdlContext.h
index c275300..329a374 100644
--- a/src/crepe/facade/SdlContext.h
+++ b/src/crepe/facade/SdlContext.h
@@ -1,29 +1,38 @@
#pragma once
+#include "SDL_rect.h"
#include "Texture.h"
+#include "api/spritesheet.h"
#include <SDL2/SDL_render.h>
#include <SDL2/SDL_video.h>
-#include <string>
namespace crepe {
+class Texture;
+class Spritesheet;
+
class SdlContext {
+public:
+ void loop(const Texture& , api::Spritesheet&);
+
+ // singleton
+ static SdlContext & get_instance();
private:
SdlContext();
virtual ~SdlContext();
- // singleton
- static SdlContext & get_instance();
SdlContext(const SdlContext &) = delete;
SdlContext(SdlContext &&) = delete;
SdlContext & operator=(const SdlContext &) = delete;
SdlContext & operator=(SdlContext &&) = delete;
SDL_Texture* setTextureFromPath(const char*);
+ SDL_Texture* setTextureFromPath(const char*, SDL_Rect& clip, const int row, const int col);
private:
friend class Texture;
+ friend class api::Spritesheet;
SDL_Window* m_game_window;
SDL_Renderer* m_game_renderer;