viz1090/Aircraft.cpp
nathan 2a0f6e01eb view1090.h only used in aircraftlist and appdata now
Former-commit-id: 6363362a52bb693ec01d8bb683d6a43065e71d9a
Former-commit-id: 924f30949e039d9c7ee4cde6bac7606069024075
2020-03-20 22:12:45 -07:00

23 lines
274 B
C++

#include "Aircraft.h"
Aircraft::Aircraft(uint32_t addr) {
this->addr = addr;
created = 0;
prev_seen = 0;
x = 0;
y = 0;
cx = 0;
cy = 0;
ox = 0;
oy = 0;
dox = 0;
doy = 0;
ddox = 0;
ddoy = 0;
}
Aircraft::~Aircraft() {
}