DeskSim v2 0.1
Train simulator prototype created for Lokførerskolen
IsSaveableInterface.h
1// Copyright 2022 Thomas Arinesalingam, John Ole Bjerke, Endre Heksum & Henrik Markengbakken Karlsen . All Rights Reserved.
2
3#pragma once
4
5#include "CoreMinimal.h"
6#include "UObject/Interface.h"
7#include "IsSaveableInterface.generated.h"
8
9// This class does not need to be modified.
10UINTERFACE(MinimalAPI)
11class UIsSaveableInterface : public UInterface
12{
13 GENERATED_BODY()
14};
15
19class DESKSIMV2_API IIsSaveableInterface
20{
21 GENERATED_BODY()
22
23 // Add interface functions to this class. This is the class that will be inherited to implement this interface.
24public:
25};
Definition: IsSaveableInterface.h:20
Definition: IsSaveableInterface.h:12