Payback 0.0.1
CK Graduation Project
로딩중...
검색중...
일치하는것 없음
LevelPostLoad.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/Interface.h"
8#include "LevelPostLoad.generated.h"
9
10
12
13// This class does not need to be modified.
14UINTERFACE()
15class ULevelPostLoad : public UInterface
16{
17 GENERATED_BODY()
18};
19
23class CK_UE_API ILevelPostLoad
24{
25 GENERATED_BODY()
26
27 // Add interface functions to this class. This is the class that will be inherited to implement this interface.
28public:
29 virtual void OnPostLoadStart(const FLevelStreamingContext Context) = 0;
31 virtual void OnPostLoadEnd(const FLevelStreamingContext Context) = 0;
32};
ELevelStreamingEffectResult
Definition CK_ELevelType.h:22
Definition LevelPostLoad.h:24
virtual void OnPostLoadEnd(const FLevelStreamingContext Context)=0
virtual ELevelStreamingEffectResult OnPostLoadUpdate(const FLevelStreamingContext Context)=0
virtual void OnPostLoadStart(const FLevelStreamingContext Context)=0
Definition LevelPostLoad.h:16
Definition LevelStreamingContext.h:10