| 23 | |
| 24 | |
| 25 | EndPortalObject* EndPortalObject::create() |
| 26 | { |
| 27 | auto pRet = new (std::nothrow) EndPortalObject(); |
| 28 | |
| 29 | if (pRet && pRet->init()) |
| 30 | { |
| 31 | pRet->autorelease(); |
| 32 | return pRet; |
| 33 | } |
| 34 | AX_SAFE_DELETE(pRet); |
| 35 | return nullptr; |
| 36 | } |
| 37 | |
| 38 | bool EndPortalObject::init() |
| 39 | { |