17 lines
221 B
Plaintext
17 lines
221 B
Plaintext
#ifndef __{thisPackageName}_{className}_H__
|
|
#define __{thisPackageName}_{className}_H__
|
|
|
|
#include "FairyGUI.h"
|
|
{includeFiles}
|
|
|
|
namespace {packageName}
|
|
{
|
|
class {className}
|
|
{
|
|
public:
|
|
static void bindAll();
|
|
};
|
|
|
|
}
|
|
|
|
#endif |