Payback 0.0.1
CK Graduation Project
로딩중...
검색중...
일치하는것 없음
LevelPreLoad.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 "LevelPreLoad.generated.h"
9
11
12// This class does not need to be modified.
13UINTERFACE()
14class ULevelPreLoad : public UInterface
15{
16 GENERATED_BODY()
17};
18
22class CK_UE_API ILevelPreLoad
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 OnPreLoadStart(const FLevelStreamingContext Context) = 0;
30 virtual void OnPreLoadEnd(const FLevelStreamingContext Context) = 0;
31};
ELevelStreamingEffectResult
Definition CK_ELevelType.h:22
Definition LevelPreLoad.h:23
virtual ELevelStreamingEffectResult OnPreLoadUpdate(const FLevelStreamingContext Context)=0
virtual void OnPreLoadEnd(const FLevelStreamingContext Context)=0
virtual void OnPreLoadStart(const FLevelStreamingContext Context)=0
Definition LevelPreLoad.h:15
Definition LevelStreamingContext.h:10