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