| 107 | } |
| 108 | |
| 109 | Node* Director::getPostNode() { |
| 110 | if (!_postNode) { |
| 111 | _postNode = Node::create(false); |
| 112 | _postNode->onEnter(); |
| 113 | } |
| 114 | return _postNode; |
| 115 | } |
| 116 | |
| 117 | UITouchHandler* Director::getUITouchHandler() { |
| 118 | if (!_uiTouchHandler) { |
no test coverage detected