| 21 | |
| 22 | |
| 23 | class AltDirector : public ax::Director { |
| 24 | public: |
| 25 | static AltDirector* getInstance() { |
| 26 | return (AltDirector*)ax::Director::getInstance(); |
| 27 | } |
| 28 | |
| 29 | // Director have this variables in "protected", so i did this class to use them |
| 30 | ax::Vector<ax::Scene*> getScenesStack() { |
| 31 | return Director::_scenesStack; |
| 32 | } |
| 33 | void setSendCleanupToScene(bool cleanupToScene) { |
| 34 | ax::Director::_sendCleanupToScene = cleanupToScene; |
| 35 | } |
| 36 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected