本文来自http://blog.csdn.net/runaying ,引用必须注明出处!
cocos2d-X 节点(UIRootWidget.h)API
温馨提醒:为了大家能更好学习,强烈推荐大家看看本人的这篇博客 Cocos2d-X权威指南笔记
基础类,只有创建和初始化方法
///cocos2d-x-3.0alpha0/extensions/CocoStudio/GUI/BaseClasses
//基础类,只有创建和初始化方法
#ifndef __UIROOTWIDGET_H__
#define __UIROOTWIDGET_H__
#include "../Layouts/Layout.h"
NS_CC_EXT_BEGIN
class UIRootWidget : public Layout
{
public:
/**
* Default constructor
*/
UIRootWidget();
/**
* Default destructor
*/
virtual ~UIRootWidget();
/**
* 分配并初始化一个widget。
*/
static UIRootWidget* create();
/**
* Returns the "class name" of widget.
*/
virtual const char* getDescription() const;
protected:
//initializes state of widget.
virtual bool init();
};
NS_CC_EXT_END
#endif /* defined(__CocoGUI__RootWidget__) */