2020-03-08 02:22:20 +01:00
|
|
|
#ifndef INPUT_H
|
2020-03-11 00:56:59 +01:00
|
|
|
#define INPUT_H
|
2020-03-08 02:22:20 +01:00
|
|
|
|
|
|
|
#include "AircraftData.h"
|
|
|
|
#include "View.h"
|
|
|
|
|
|
|
|
class Input {
|
|
|
|
public:
|
|
|
|
void getInput();
|
|
|
|
|
|
|
|
//should input know about view?
|
|
|
|
Input(View *view);
|
|
|
|
|
|
|
|
View *view;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|