Remove old code

This commit is contained in:
Wojtek Figat
2025-01-24 11:08:31 +01:00
parent dffc6ea24d
commit 80a44b5f5c
13 changed files with 2 additions and 183 deletions

View File

@@ -94,22 +94,6 @@ public:
: GraphParameter(SpawnParams(Guid::New(), TypeInitializer))
{
}
ShaderGraphParameter(const ShaderGraphParameter& other)
: ShaderGraphParameter()
{
#if !BUILD_RELEASE
CRASH; // Not used
#endif
}
ShaderGraphParameter& operator=(const ShaderGraphParameter& other)
{
#if !BUILD_RELEASE
CRASH; // Not used
#endif
return *this;
}
};
template<class NodeType = ShaderGraphNode<>, class BoxType = ShaderGraphBox, class ParameterType = ShaderGraphParameter>