| 362 | return clock; |
| 363 | } |
| 364 | |
| 365 | bool DisplayArcadeMap::GetPosition(Point3& pos) |
| 366 | { |
| 367 | ArcadeUnitInfo* me = _currentTemplate->FindPlayer(); |
| 368 | if (me) |
| 369 | { |
| 370 | pos = me->position; |
| 371 | return true; |
| 372 | } |
| 373 | else |
| 374 | { |
| 375 | return false; |
| 376 | } |
| 377 | } |
| 378 | |
| 379 | bool BreakIntro(unsigned nChar) |
no test coverage detected