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/DebugParts.h
2019-03-09 21:07:32 -05:00

14 lines
219 B
C++

#pragma once
#include "DebugInfo.h"
class Simulation;
class DebugParts : public DebugInfo
{
Simulation * sim;
public:
DebugParts(unsigned int id, Simulation * sim);
void Draw() override;
virtual ~DebugParts();
};