MCPcopy Create free account
hub / github.com/OpenXcom/OpenXcom / ScannerView

Method ScannerView

src/Battlescape/ScannerView.cpp:42–45  ·  view source on GitHub ↗

* Initializes the Scanner view. * @param w The ScannerView width. * @param h The ScannerView height. * @param x The ScannerView x origin. * @param y The ScannerView y origin. * @param game Pointer to the core game. * @param unit The current unit. */

Source from the content-addressed store, hash-verified

40 * @param unit The current unit.
41 */
42ScannerView::ScannerView (int w, int h, int x, int y, Game * game, BattleUnit *unit) : InteractiveSurface(w, h, x, y), _game(game), _unit(unit), _frame(0)
43{
44 _redraw = true;
45}
46
47/**
48 * Draws the ScannerView view.

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected