我不確定我的編譯器在這裏需要什麼。它給了我下面的錯誤Undeclared Identifier(newGame) - 指針作爲參數
error C2065: 'newGame' : undeclared identifier
相關代碼:
void createMenu() {
MenuItem newGameOption = MenuItem("../art/newGame.bmp", newGame);
}
//start a new game
void newGame() {
}
在MenuItem.h
class MenuItem {
bool selected = false;
std::string path; //Path to menu item's art
void *pf(); //Function to execute upon selection
public :
MenuItem(const char*, void pf()); //constructor
};
在'createMenu()'上面聲明'newGame()'。 – 0x499602D2