diff --git a/projects/interactions/private/pybindings/Interaction.h b/projects/interactions/private/pybindings/Interaction.h new file mode 100644 index 00000000..07abf920 --- /dev/null +++ b/projects/interactions/private/pybindings/Interaction.h @@ -0,0 +1,19 @@ +#include +#include +#include + +#include +#include +#include + +#include "../../public/SIREN/interactions/Interaction.h" +#include "../../../dataclasses/public/SIREN/dataclasses/Particle.h" +#include "../../../geometry/public/SIREN/geometry/Geometry.h" +#include "../../../utilities/public/SIREN/utilities/Random.h" + +void register_Interaction(pybind11::module_ & m) { + using namespace pybind11; + using namespace siren::interactions; + + class_>(m, "Interaction"); +}