完善地图菜单

This commit is contained in:
ozg
2014-04-10 22:32:31 +08:00
parent e9ca8e4474
commit 241e597718
30 changed files with 1323 additions and 438 deletions
+9
View File
@@ -27,6 +27,15 @@ using namespace CocosDenshion;
//获取player列表
#define PLAYER_QUERY "select * from player order by id asc"
//技能的属性
enum RPGSkillAttr
{
kRPGSkillAttrNormal = 1, //通常属性
kRPGSkillAttrFire = 2, //火
kRPGSkillAttrIce = 3, //冰
kRPGSkillAttrNone = 10, //无
};
void addLab(CCNode* parentNode, int tag, CCString* text, CCPoint point); //增加状态界面的lab
void addLab(CCNode* parentNode, int tag, CCString* text, float fontSize, CCPoint point);
void addLab(CCNode* parentNode, int tag, CCString* text, float fontSize, CCTextAlignment textAlignment, CCPoint point);