fs2port/port/include/instruments.h
2026-05-13 21:32:05 -05:00

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