17 lines
194 B
C
17 lines
194 B
C
![]() |
#ifndef INPUT_H
|
||
|
#define INPUT
|
||
|
|
||
|
#include "AircraftData.h"
|
||
|
#include "View.h"
|
||
|
|
||
|
class Input {
|
||
|
public:
|
||
|
void getInput();
|
||
|
|
||
|
//should input know about view?
|
||
|
Input(View *view);
|
||
|
|
||
|
View *view;
|
||
|
};
|
||
|
|
||
|
#endif
|