From b2a371e8042487528777e359a5e3e5e7a114396e Mon Sep 17 00:00:00 2001 From: Anna Wiggins Date: Wed, 22 Jun 2011 16:43:23 -0400 Subject: [PATCH] Added some surfaces --- gamecore.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/gamecore.h b/gamecore.h index f396085..25dc4b4 100644 --- a/gamecore.h +++ b/gamecore.h @@ -33,6 +33,10 @@ class GameCore : public MainEvent bool is_running; SDL_Surface* display; + + // textures to draw + SDL_Surface* background; + SDL_Surface* node; }; #endif