15 lines
306 B
C++
Executable file
15 lines
306 B
C++
Executable file
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "UObject/Interface.h"
|
|
#include "ActorTrackingCheatInterface.generated.h"
|
|
|
|
UINTERFACE()
|
|
class UActorTrackingCheatInterface : public UInterface {
|
|
GENERATED_BODY()
|
|
};
|
|
|
|
class IActorTrackingCheatInterface : public IInterface {
|
|
GENERATED_BODY()
|
|
public:
|
|
};
|
|
|