2025-10-14 22:20:59 -04:00
|
|
|
// Copyright Echo Devgroup
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#include "Interact/CombatInterface.h"
|
|
|
|
|
|
|
|
|
|
#include "GeometryCollection/GeometryCollectionComponent.h"
|
|
|
|
|
|
|
|
|
|
// Add default functionality here for any ICombatInterface functions that are not pure virtual.
|
|
|
|
|
|
|
|
|
|
int32 ICombatInterface::GetPlayerLevel()
|
|
|
|
|
{
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
2025-10-17 00:00:23 -04:00
|
|
|
|
|
|
|
|
FVector ICombatInterface::GetCombatSocketLocation()
|
|
|
|
|
{
|
|
|
|
|
return FVector::ZeroVector;
|
|
|
|
|
}
|