Payback 0.0.1
CK Graduation Project
로딩중...
검색중...
일치하는것 없음
SectionGateStateCommand.h
이 파일의 문서화 페이지로 가기
1// Fill out your copyright notice in the Description page of Project Settings.
2
3#pragma once
4
7#include "SectionGateStateCommand.generated.h"
8
9
10UCLASS()
11class CK_UE_API USectionGateStateCommand : public UCommandBase
12{
13 GENERATED_BODY()
14
15public:
16 void Initialize(ASectionGate* InSectionGate, EGateState InPreviousState, EGateState InTargetState);
17 virtual bool Process() override;
18 virtual void Undo() override;
19
20private:
21 TWeakObjectPtr<ASectionGate> SectionGate;
24};
EGateState
Definition SectionGate.h:17
Definition SectionGate.h:34
Definition CommandBase.h:11
Definition SectionGateStateCommand.h:12
TWeakObjectPtr< ASectionGate > SectionGate
Definition SectionGateStateCommand.h:21