The-Powder-Toy/src/simulation/ToolClasses.h
2020-01-09 19:22:11 +01:00

16 lines
239 B
C++

#ifndef TOOLCLASSES_H
#define TOOLCLASSES_H
#include <vector>
#include <memory>
#include "SimTool.h"
#define TOOL_NUMBERS_ENUMERATE
#include "ToolNumbers.h"
#undef TOOL_NUMBERS_ENUMERATE
std::vector<SimTool> const &GetTools();
#endif