2012-04-16 18:58:43 +08:00
|
|
|
#ifndef __CCSPACER_H__
|
|
|
|
#define __CCSPACER_H__
|
|
|
|
|
2012-04-17 11:12:05 +08:00
|
|
|
#include "CCLayer.h"
|
2012-04-16 18:58:43 +08:00
|
|
|
|
2012-04-17 11:12:05 +08:00
|
|
|
NS_CC_BEGIN
|
2012-04-16 18:58:43 +08:00
|
|
|
|
2012-04-16 23:16:03 +08:00
|
|
|
class CC_DLL CCSpacer: public CCLayer
|
2012-04-16 18:58:43 +08:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
static CCSpacer* verticalSpacer(float space);
|
|
|
|
static CCSpacer* horizontalSpacer(float space);
|
|
|
|
};
|
|
|
|
|
2012-04-17 11:12:05 +08:00
|
|
|
NS_CC_END
|
2012-04-16 18:58:43 +08:00
|
|
|
|
|
|
|
#endif
|