feat: variable socket counts

This commit is contained in:
parker
2025-07-30 14:03:38 +01:00
parent 1c57b7a9e6
commit 83e0977d5d
13 changed files with 101 additions and 61 deletions

View File

@@ -6,11 +6,11 @@ class GOP_house
: public enzo::nt::GeometryOpDef
{
public:
GOP_house(enzo::nt::OpId opId);
GOP_house(enzo::nt::NetworkManager* network, enzo::op::OpInfo opInfo);
virtual void cookOp(enzo::op::Context context);
static enzo::nt::GeometryOpDef* ctor(enzo::nt::OpId opId)
static enzo::nt::GeometryOpDef* ctor(enzo::nt::NetworkManager* network, enzo::op::OpInfo opInfo)
{
return new GOP_house(opId);
return new GOP_house(network, opInfo);
}
static BOOST_SYMBOL_EXPORT enzo::prm::Template parameterList[];