Wizard Fu's Cocos2dx Platformer Game Engine v1.0.1

nat@wizardfu.com

See the file LICENSE for the license governing this code.

A minimal scene which simply displays a splash image, then transitions to the title scene.

#pragma once
#include "Headers.h"

class SplashScene : public Scene
{	
	public:
		SplashScene();
		~SplashScene();
};
 
h