| 31 | CUIProgressShape* g_MissileForceShape = NULL; |
| 32 | |
| 33 | void create_force_progress() |
| 34 | { |
| 35 | VERIFY(!g_MissileForceShape); |
| 36 | CUIXml uiXml; |
| 37 | bool xml_result = uiXml.Init(CONFIG_PATH, UI_PATH, "grenade.xml"); |
| 38 | R_ASSERT3(xml_result, "xml file not found", "grenade.xml"); |
| 39 | |
| 40 | CUIXmlInit xml_init; |
| 41 | g_MissileForceShape = xr_new<CUIProgressShape>(); |
| 42 | xml_init.InitProgressShape(uiXml, "progress", 0, g_MissileForceShape); |
| 43 | } |
| 44 | |
| 45 | CMissile::CMissile(void) |
| 46 | { |
no test coverage detected