#ifndef SIMULATION_H #define SIMULATION_H #include "box.hpp" #include "particle.hpp" #include template class Simulation { // Simulation State variables T timestep; Box box; // Host Data std::vector> particles; }; #endif