blob: a1a20931719558ae5a510db8a9bd640e8c95c793 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#pragma once
#include "DebugInfo.h"
class Simulation;
class ElementPopulationDebug : public DebugInfo
{
Simulation * sim;
float maxAverage;
public:
ElementPopulationDebug(Simulation * sim);
virtual void Draw(ui::Point position);
virtual ~ElementPopulationDebug();
};
|