and it does it again for my getInstance function so I thought "Oh I must have not included the header, but I checked and at the top I have the right header included. Any ideas to what the problem could be?error: 'System' has not been delclared
Code: Select all
//System.h
#ifndef SYSTEM_H_INCLUDED
#define SYSTEM_H_INCLUDED
#include "sdl/sdl.h"
#include "cursor.h"
#include "sprite.h"
//extern SDL_Surface* buffer;
class System
{
public:
void init();
void run();
void exit();
SDL_Surface* buffer;
static System &getInstance()
{
static System instance;
return instance;
}
int SCREEN_WIDTH;
int SCREEN_HEIGHT;
int SCREEN_BPP;
int FRAMES_PER_SECOND;
bool quit;
SDL_Event event;
private:
Cursor c;
//Cursor *c;
int curTicks;
//bool quit;
void getInput();
void render();
void limitFPS();
Uint8 *key;
};
#endif // SYSTEM_H_INCLUDED
Code: Select all
//Sprite.h
#ifndef SPRITE_H_INCLUDED
#define SPRITE_H_INCLUDED
#include "TextureManager.h"
#include "System.h"
class Sprite
{
public:
Sprite(){image = TextureManager::getInstance().getTexture(0);} //Sets default image
~Sprite(){SDL_FreeSurface(image);}
int x, y;
void setImage(SDL_Surface* newImage){image = newImage;}
void setPos(int newX, int newY){y = newY;
x = newX;}
void update(){pos.x = x;
pos.y = y;} //Pre render update for position rect
void render(){SDL_BlitSurface(image, &clip, System::getInstance().buffer, &pos);} //Renders the sprite onto the screen
void setClip(int x, int y, int w, int h){clip.x = x;
clip.y = y;
clip.w = w;
clip.h = h;}
private:
SDL_Surface* image;
SDL_Rect clip;
SDL_Rect pos;
};
#endif // SPRITE_H_INCLUDED