Skip to content

Instantly share code, notes, and snippets.

View Charnnarong's full-sized avatar
🎯
Focusing

Charnnarong Cth Charnnarong

🎯
Focusing
View GitHub Profile
#ifndef GAMESCENE_H_
#define GAMESCENE_H_
class GameScene {
public:
GameScene();
virtual ~GameScene();
};
#endif /* GAMESCENE_H_ */
#include "GameScene.h"
GameScene::GameScene() {
// TODO Auto-generated constructor stub
}
GameScene::~GameScene() {
// TODO Auto-generated destructor stub
}