14 lines
417 B
C
14 lines
417 B
C
// Live instrument needles painted on top of the static panel bitmap.
|
|
// Reads aircraft state and animates the airspeed, altimeter, attitude
|
|
// indicator, heading, vertical speed and turn coordinator gauges.
|
|
|
|
#ifndef INSTRUMENTS_H
|
|
#define INSTRUMENTS_H
|
|
|
|
#include "aircraft.h"
|
|
#include "framebuffer.h"
|
|
#include "radios.h"
|
|
|
|
void instrumentsDrawAll(FramebufferT *fb, const AircraftT *ac, const RadiosT *radios);
|
|
|
|
#endif
|