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