The-Powder-Toy/src/simulation/ToolClasses.h

16 lines
239 B
C
Raw Normal View History

2020-01-09 03:34:15 -06:00
#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