| 23 | CUISequencer* g_tutorial2 = NULL; |
| 24 | |
| 25 | void 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 | |
| 39 | void stop_tutorial() |
| 40 | { |