为什么我得到 "missing ';' before '*' "?
Why am I getting "missing ';' before '*' "?
我是 c++ 的新手,我正在使用 cocos2d-x
做一些事情
我只想在 .h 文件中创建一个简单的 Size 属性,以便在实现中使用不同的方法来保持其状态。
我在这里错过了什么?
#ifndef __INTROBETTER_SCENE_H__
#define __INTROBETTER_SCENE_H__
#include "cocos2d.h"
class IntroBetterScene : public cocos2d::Layer
{
public:
// there's no 'id' in cpp, so we recommend returning the class instance pointer
static cocos2d::Scene* createScene();
// Here's a difference. Method 'init' in cocos2d-x returns bool, instead of returning 'id' in cocos2d-iphone
virtual bool init();
// a selector callback
void menuCloseCallback(cocos2d::Ref* pSender);
// implement the "static create()" method manually
CREATE_FUNC(IntroBetterScene);
private:
void GoToMainMenuScene(float dt);
Size* sizeWindow;
};
#endif //__INTROBETTER_SCENE_H__
因为你没有指定正确的范围。当前范围内没有class Size
。您需要使用 cocos2d::Size
.
我是 c++ 的新手,我正在使用 cocos2d-x
做一些事情我只想在 .h 文件中创建一个简单的 Size 属性,以便在实现中使用不同的方法来保持其状态。
我在这里错过了什么?
#ifndef __INTROBETTER_SCENE_H__
#define __INTROBETTER_SCENE_H__
#include "cocos2d.h"
class IntroBetterScene : public cocos2d::Layer
{
public:
// there's no 'id' in cpp, so we recommend returning the class instance pointer
static cocos2d::Scene* createScene();
// Here's a difference. Method 'init' in cocos2d-x returns bool, instead of returning 'id' in cocos2d-iphone
virtual bool init();
// a selector callback
void menuCloseCallback(cocos2d::Ref* pSender);
// implement the "static create()" method manually
CREATE_FUNC(IntroBetterScene);
private:
void GoToMainMenuScene(float dt);
Size* sizeWindow;
};
#endif //__INTROBETTER_SCENE_H__
因为你没有指定正确的范围。当前范围内没有class Size
。您需要使用 cocos2d::Size
.