mirror of
https://github.com/jmarshall23/DoomRTX.git
synced 2026-08-17 19:23:51 +02:00
Initial Prey Game integration support.
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
// Copyright (C) 2004 Id Software, Inc.
|
||||
//
|
||||
// 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;
|
||||
};
|
||||
Reference in New Issue
Block a user