Merge pull request #5422 from dumganhar/develop

Added virtual and override keywords to Scene::init() method
This commit is contained in:
James Chen 2014-02-20 21:37:46 +08:00
commit 30d100296a
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;