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

Method create

Source/LoadingCircle.cpp:25–37  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

23#include "GameToolbox/conv.h"
24
25LoadingCircle *LoadingCircle::create()
26{
27 LoadingCircle* pRet = new LoadingCircle();
28 if (pRet->init())
29 {
30 pRet->autorelease();
31 return pRet;
32 } else {
33 delete pRet;
34 pRet = nullptr;
35 return nullptr;
36 }
37}
38
39bool LoadingCircle::init()
40{

Callers

nothing calls this directly

Calls 1

initMethod · 0.45

Tested by

no test coverage detected