MCPcopy Create free account
hub / github.com/OGSR/OGSR-Engine / start_tutorial

Function start_tutorial

ogsr_engine/xrGame/game_sv_base_script.cpp:25–37  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

23CUISequencer* g_tutorial2 = NULL;
24
25void start_tutorial(LPCSTR name)
26{
27 if (g_tutorial)
28 {
29 VERIFY(!g_tutorial2);
30 g_tutorial2 = g_tutorial;
31 };
32
33 g_tutorial = xr_new<CUISequencer>();
34 g_tutorial->Start(name);
35 if (g_tutorial2)
36 g_tutorial->m_pStoredInputReceiver = g_tutorial2->m_pStoredInputReceiver;
37}
38
39void stop_tutorial()
40{

Callers 1

DieMethod · 0.85

Calls 1

StartMethod · 0.45

Tested by

no test coverage detected