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

Class AlienBaseState

src/Geoscape/AlienBaseState.h:37–52  ·  view source on GitHub ↗

* Displays info on an alien base. */

Source from the content-addressed store, hash-verified

35 * Displays info on an alien base.
36 */
37class AlienBaseState : public State
38{
39private:
40 GeoscapeState *_state;
41 AlienBase *_base;
42 TextButton *_btnOk;
43 Window *_window;
44 Text *_txtTitle;
45public:
46 /// Creates the Alien Base Detected state.
47 AlienBaseState(Game *game, AlienBase *base, GeoscapeState *state);
48 /// Cleans up the Alien Base Detected state.
49 ~AlienBaseState();
50 /// Handler for clicking the OK button.
51 void btnOkClick(Action *action);
52};
53
54}
55

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected