Payback 0.0.1
CK Graduation Project
로딩중...
검색중...
일치하는것 없음
InteractionRule.h
이 파일의 문서화 페이지로 가기
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/Object.h"
7#include "InteractionRule.generated.h"
8
13UCLASS(Abstract, Blueprintable, BlueprintType)
14class CK_UE_API UInteractionRule : public UObject
15{
16 GENERATED_BODY()
17
18public:
19 virtual bool IsInteractable(AInteractableActor* InteractableActor) PURE_VIRTUAL(UInteractionRule::IsInteractable, return false;)
20};
Definition InteractableActor.h:16
Definition InteractionRule.h:15