Space Plunder
Loading...
Searching...
No Matches
Rewards.h
Go to the documentation of this file.
1// Fill out your copyright notice in the Description page of Project Settings.
2
3#pragma once
4
5#include "CoreMinimal.h"
6#include "UObject/Interface.h"
7#include "Rewards.generated.h"
8
9// This class does not need to be modified.
10UINTERFACE()
11class BASEHELPERS_API URewards : public UInterface
12{
13 GENERATED_BODY()
14};
15
19class BASEHELPERS_API IRewards
20{
21 GENERATED_BODY()
22
23public:
24
25 virtual void SetCredits(const int32 Value) = 0;
26 virtual void SetExperience(const int32 Value) = 0;
27
28};
Definition Rewards.h:20
virtual void SetCredits(const int32 Value)=0
virtual void SetExperience(const int32 Value)=0
Definition Rewards.h:12