mirror of
https://github.com/k4zmu2a/SpaceCadetPinball.git
synced 2024-11-17 15:20:17 +01:00
5461483bb5
It features various collision info perspective projected and overlayed on the table.
22 lines
No EOL
440 B
C++
22 lines
No EOL
440 B
C++
#pragma once
|
|
|
|
struct gdrv_bitmap8;
|
|
struct circle_type;
|
|
struct line_type;
|
|
class TEdgeSegment;
|
|
|
|
class DebugOverlay
|
|
{
|
|
public:
|
|
static void UnInit();
|
|
static void DrawOverlay();
|
|
private:
|
|
static gdrv_bitmap8* dbScreen;
|
|
|
|
static void DrawCicleType(circle_type& circle);
|
|
static void DrawLineType(line_type& line);
|
|
static void DrawEdge(TEdgeSegment* edge);
|
|
static void DrawBoxGrid();
|
|
static void DrawAllEdges();
|
|
static void DrawBallInfo();
|
|
}; |