Files
DoomRTX/neo/quake4/game/gamesys/DebugGraph.h
T
2026-05-09 22:10:40 -07:00

14 lines
242 B
C++

// DebugGraph.h
class idDebugGraph {
public:
idDebugGraph();
void SetNumSamples( int num );
void AddValue( float value );
void Draw( const idVec4 &color, float scale ) const;
private:
idList<float> samples;
int index;
};