You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
221 B
Plaintext
17 lines
221 B
Plaintext
|
2 years ago
|
#ifndef __{thisPackageName}_{className}_H__
|
||
|
|
#define __{thisPackageName}_{className}_H__
|
||
|
|
|
||
|
|
#include "FairyGUI.h"
|
||
|
|
{includeFiles}
|
||
|
|
|
||
|
|
namespace {packageName}
|
||
|
|
{
|
||
|
|
class {className}
|
||
|
|
{
|
||
|
|
public:
|
||
|
|
static void bindAll();
|
||
|
|
};
|
||
|
|
|
||
|
|
}
|
||
|
|
|
||
|
|
#endif
|