Files
Aura-TopDownRPG-GAS/Source/Aura/Private/Interact/CombatInterface.cpp
2025-10-17 00:00:23 -04:00

19 lines
368 B
C++

// 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;
}
FVector ICombatInterface::GetCombatSocketLocation()
{
return FVector::ZeroVector;
}