Added virtual and override keywords to Scene::init() method

This commit is contained in:
James Chen 2014-02-20 21:37:01 +08:00
parent b06a98b8ee
commit 0b6858bdde
1 changed files with 1 additions and 1 deletions

View File

@ -63,7 +63,7 @@ public:
protected:
Scene();
virtual ~Scene();
bool init();
virtual bool init() override;
friend class Node;
friend class SpriteBatchNode;