Files
Aura-TopDownRPG-GAS/Source/Aura/Private/Interact/CombatInterface.cpp
2025-10-14 22:20:59 -04:00

14 lines
282 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;
}