13 lines
338 B
C
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
|