15 lines
304 B
C++
Executable file
15 lines
304 B
C++
Executable file
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "SaveGameIDInterface.h"
|
|
#include "RefundableInterface.generated.h"
|
|
|
|
UINTERFACE()
|
|
class URefundableInterface : public USaveGameIDInterface {
|
|
GENERATED_BODY()
|
|
};
|
|
|
|
class IRefundableInterface : public ISaveGameIDInterface {
|
|
GENERATED_BODY()
|
|
public:
|
|
};
|
|
|