15 lines
273 B
C++
15 lines
273 B
C++
#pragma once
|
|
|
|
#include "DebugInfo.h"
|
|
|
|
class Simulation;
|
|
class ElementPopulationDebug : public DebugInfo
|
|
{
|
|
Simulation * sim;
|
|
float maxAverage;
|
|
public:
|
|
ElementPopulationDebug(unsigned int id, Simulation * sim);
|
|
virtual void Draw();
|
|
virtual ~ElementPopulationDebug();
|
|
};
|