viz1090/Input.h
Nathan Matsuda be5ec5c0ed builds and runs
Former-commit-id: 5158d4459d5b43213803b859ae4491113cf765f9
Former-commit-id: cd1720a0ea9b781adbe21e052efb79b75bc137f1
2020-03-10 16:56:59 -07:00

17 lines
196 B
C++

#ifndef INPUT_H
#define INPUT_H
#include "AircraftData.h"
#include "View.h"
class Input {
public:
void getInput();
//should input know about view?
Input(View *view);
View *view;
};
#endif