This repository has been archived on 2025-03-20. You can view files and clone it, but cannot push or open issues or pull requests.
The-Powder-Toy/src/debug/ElementPopulation.h
2014-09-27 22:25:15 -04:00

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();
};