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

Method create

Source/LoadingLayer.cpp:43–53  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

41
42
43LoadingLayer* LoadingLayer::create() {
44 LoadingLayer* pRet = new LoadingLayer();
45 if (pRet->init()) {
46 pRet->autorelease();
47 return pRet;
48 } else {
49 delete pRet;
50 pRet = nullptr;
51 return nullptr;
52 }
53}
54
55
56constexpr static auto splashes = std::to_array <const char*>({

Callers

nothing calls this directly

Calls 1

initMethod · 0.45

Tested by

no test coverage detected