mirror of https://github.com/axmolengine/axmol.git
15 lines
334 B
C
15 lines
334 B
C
#ifndef _RESOURCE_H_
|
|
#define _RESOURCE_H_
|
|
|
|
#include "helloworld_res_def.h"
|
|
#include "cocos2d.h"
|
|
|
|
const T_ResourceInfo ResInfo[] =
|
|
{
|
|
{ "HelloWorld.png", HELLOW_ID_BITMAP_HelloWorld },
|
|
{ "CloseNormal.png", HELLOW_ID_BITMAP_CloseNormal },
|
|
{ "CloseSelected.png", HELLOW_ID_BITMAP_CloseSelected },
|
|
};
|
|
|
|
#endif
|