GASATHON/Project/Source/Gasa/Interfaces/CombatInterface.h

21 lines
256 B
C
Raw Normal View History

2024-10-22 14:32:37 -07:00
#pragma once
#include "UObject/Interface.h"
#include "CombatInterface.generated.h"
UINTERFACE(MinimalAPI)
class UCombat : public UInterface
{
GENERATED_BODY()
};
class GASA_API ICombat
{
GENERATED_BODY()
public:
virtual int32 GetPlayerLevel();
};