Skip to content
Snippets Groups Projects
Simulation.hpp 149 B
Newer Older
#ifndef SIMULATION_HPP
#define SIMULATION_HPP

namespace nbody {
	class Simulation {
	public:
		Simulation();
		virtual ~Simulation();
	};
}

#endif