MCPcopy Create free account
hub / github.com/Open-GD/OpenGD / create

Method create

Source/RewardsPage.cpp:43–55  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

41USING_NS_AX;
42
43RewardsPage* RewardsPage::create()
44{
45 RewardsPage* pRet = new RewardsPage();
46
47 if (pRet && pRet->init())
48 {
49 pRet->autorelease();
50 return pRet;
51 }
52
53 AX_SAFE_DELETE(pRet);
54 return nullptr;
55}
56
57bool RewardsPage::init()
58{

Callers

nothing calls this directly

Calls 1

initMethod · 0.45

Tested by

no test coverage detected