mirror of https://github.com/axmolengine/axmol.git
24 lines
358 B
C
24 lines
358 B
C
|
/*
|
||
|
* HelloWorld.h
|
||
|
* HelloWorld
|
||
|
*
|
||
|
* Created by Walzer on 10-11-12.
|
||
|
* Copyright 2010 __MyCompanyName__. All rights reserved.
|
||
|
*
|
||
|
*/
|
||
|
#ifndef __HELLOWORLD_H__
|
||
|
#define __HELLOWORLD_H__
|
||
|
|
||
|
#include "cocos2d.h"
|
||
|
|
||
|
class HelloWorld : public cocos2d::CCXApplication {
|
||
|
public:
|
||
|
HelloWorld();
|
||
|
|
||
|
virtual bool initCocos2d();
|
||
|
|
||
|
};
|
||
|
|
||
|
#endif // __HELLOWORLD_H__
|
||
|
|