This commit is contained in:
2025-04-18 19:06:51 +08:00
parent 446eaf90d0
commit 6753cd5017
2 changed files with 26 additions and 1 deletions

View File

@@ -1,6 +1,21 @@
#include "DismembermentCompiler.h"
#include "DismembermentGraph/DismembermentCompiler.h"
#include "DismembermentGraph/DismembermentGraph.h"
UDismembermentCompiler::UDismembermentCompiler()
{
// Initialize default values
}
bool UDismembermentCompiler::CompileGraph(UDismembermentGraph* InGraph)
{
// Implementation will be added in future updates
// This is a placeholder to resolve link errors
// Store the graph reference
Graph = InGraph;
// Clear compiled data
CompiledNodeData.Empty();
return true;
}

View File

@@ -3,4 +3,14 @@
UDismembermentExecutor::UDismembermentExecutor()
{
// Initialize default values
ExecutionState = 0;
}
void UDismembermentExecutor::ExecuteGraph(const TArray<uint8>& CompiledData)
{
// Implementation will be added in future updates
// This is a placeholder to resolve link errors
// Reset execution state
ExecutionState = 0;
}