12 lines
239 B
C++
12 lines
239 B
C++
|
#include "VoxelAgentInterface.h"
|
||
|
|
||
|
FIntVector IVoxelAgentInterface::GetAgentLocation_Implementation() const
|
||
|
{
|
||
|
return FIntVector(0);
|
||
|
}
|
||
|
|
||
|
FVector IVoxelAgentInterface::GetAgentPartialLocation_Implementation() const
|
||
|
{
|
||
|
return FVector(0.0f);
|
||
|
}
|