mirror of https://github.com/axmolengine/axmol.git
19 lines
286 B
C
19 lines
286 B
C
|
#ifndef _RESOURCE_H_
|
||
|
#define _RESOURCE_H_
|
||
|
|
||
|
#include "cocostemplate_res_def.h"
|
||
|
|
||
|
const std::string ResourceNames[] =
|
||
|
{
|
||
|
"CloseNormal",
|
||
|
"CloseSelected",
|
||
|
};
|
||
|
|
||
|
const Int32 nResIDs[] =
|
||
|
{
|
||
|
COCOST_ID_BITMAP_CloseNormal,
|
||
|
COCOST_ID_BITMAP_CloseSelected,
|
||
|
};
|
||
|
|
||
|
#endif
|