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

16 lines
267 B
C
Raw Normal View History

2020-01-09 03:34:15 -06:00
#ifndef ELEMENTCLASSES_H
#define ELEMENTCLASSES_H
#include <vector>
#include "SimulationData.h"
#include "Element.h"
#define ELEMENT_NUMBERS_ENUMERATE
#include "ElementNumbers.h"
#undef ELEMENT_NUMBERS_ENUMERATE
std::vector<Element> const &GetElements();
#endif