* Displays info on an alien base. */
| 35 | * Displays info on an alien base. |
| 36 | */ |
| 37 | class AlienBaseState : public State |
| 38 | { |
| 39 | private: |
| 40 | GeoscapeState *_state; |
| 41 | AlienBase *_base; |
| 42 | TextButton *_btnOk; |
| 43 | Window *_window; |
| 44 | Text *_txtTitle; |
| 45 | public: |
| 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 |
nothing calls this directly
no outgoing calls
no test coverage detected