我一直在收到错误消息,指出编译器需要一个标识符。有人可以帮助我,让我知道这意味着什么吗?这是我所有的文件,我得到的错误是Game中的第6、61、62行,main中的第5行和Game Header中的第12行。
游戏
#ifndef Game.h
#define Game.cpp
#include "SDL.h"
#include <iostream>
class Game
{
public:
Game();
~Game();
void init(const char* title, int xpos, int ypos, int width, int height, bool fullscreen);
void handleEvents();
void update();
void render();
void clean();
bool running() { return isRunning; }
private:
bool isRunning;
SDL_Window *window;
SDL_Renderer *renderer;
};
#endif