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

13 lines
338 B
C

// Minimalist HUD strip painted into the panel area below the
// viewport. Reads camera state and renders speed, altitude, heading,
// pitch and bank as digital readouts plus a tiny attitude indicator.
#ifndef HUD_H
#define HUD_H
#include "camera.h"
#include "framebuffer.h"
void hudDraw(FramebufferT *fb, const CameraT *cam);
#endif