2010-10-11 15:28:58 +08:00
|
|
|
#ifndef _RESOURCE_H_
|
|
|
|
#define _RESOURCE_H_
|
|
|
|
|
|
|
|
#include "cocostemplate_res_def.h"
|
2010-10-12 11:52:11 +08:00
|
|
|
#include "cocos2d.h"
|
2010-10-11 15:28:58 +08:00
|
|
|
|
2010-10-12 11:52:11 +08:00
|
|
|
using namespace cocos2d;
|
2010-10-11 15:28:58 +08:00
|
|
|
|
2010-10-12 11:52:11 +08:00
|
|
|
const T_ImageResInfo ResInfo[] =
|
2010-10-11 15:28:58 +08:00
|
|
|
{
|
2010-10-12 11:52:11 +08:00
|
|
|
{ "CloseNormal", COCOST_ID_BITMAP_CloseNormal },
|
|
|
|
{ "CloseSelected", COCOST_ID_BITMAP_CloseSelected },
|
2010-10-11 15:28:58 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|