| 837 | } |
| 838 | |
| 839 | bool Ship::Tick() |
| 840 | { |
| 841 | PerformanceAccumulator framerate(PFE_GL_SHIPS); |
| 842 | |
| 843 | if (!this->vehstatus.Test(VehState::Stopped)) this->running_ticks++; |
| 844 | |
| 845 | ShipController(this); |
| 846 | |
| 847 | return true; |
| 848 | } |
| 849 | |
| 850 | void Ship::SetDestTile(TileIndex tile) |
| 851 | { |
no test coverage detected