2022-05-05 20:46:35 +00:00
|
|
|
// Fill out your copyright notice in the Description page of Project Settings.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "CoreMinimal.h"
|
|
|
|
#include "UObject/Interface.h"
|
2022-05-10 20:34:28 +00:00
|
|
|
#include "InteractWithCrosshairsInterface.generated.h"
|
2022-05-05 20:46:35 +00:00
|
|
|
|
|
|
|
// This class does not need to be modified.
|
|
|
|
UINTERFACE(MinimalAPI)
|
2022-05-10 20:34:28 +00:00
|
|
|
class UInteractWithCrosshairsInterface : public UInterface
|
2022-05-05 20:46:35 +00:00
|
|
|
{
|
|
|
|
GENERATED_BODY()
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
*/
|
2022-05-10 20:34:28 +00:00
|
|
|
class BLASTER_API IInteractWithCrosshairsInterface
|
2022-05-05 20:46:35 +00:00
|
|
|
{
|
|
|
|
GENERATED_BODY()
|
|
|
|
|
|
|
|
// Add interface functions to this class. This is the class that will be inherited to implement this interface.
|
|
|
|
public:
|
|
|
|
};
|