LEAP Documentation 40220
Documentation for the LEAP project
ReactsToWorldEvents.h
Go to the documentation of this file.
1// Copyright Blue Isle Studios Inc 2021. All Rights Reserved.
2
3#pragma once
4
5#include "CoreMinimal.h"
6#include "UObject/Interface.h"
7#include "ReactsToWorldEvents.generated.h"
8
9// This class does not need to be modified.
10UINTERFACE(MinimalAPI)
11class UReactsToWorldEvents : public UInterface
12{
13 GENERATED_BODY()
14};
15
16class PROJECTX_API IReactsToWorldEvents
17{
18 GENERATED_BODY()
19
20
21public:
22 UFUNCTION(BlueprintImplementableEvent)
23 void OnWorldOriginShifted();
24
25 virtual void WorldOriginShifted() {}
26};
Definition: ReactsToWorldEvents.h:17
Definition: ReactsToWorldEvents.h:12