Payback 0.0.1
CK Graduation Project
로딩중...
검색중...
일치하는것 없음
LevelPreLoadInterface.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 "LevelPreLoadInterface.generated.h"
9
10
12
13UINTERFACE()
14class ULevelPreLoadInterface : public UInterface
15{
16 GENERATED_BODY()
17};
18
23{
24 GENERATED_BODY()
25
26public:
27 virtual void OnPreLoadStart(const FLevelStreamingContext Context) = 0;
29 virtual void OnPreLoadEnd(const FLevelStreamingContext Context) = 0;
30};
ELevelStreamingEffectResult
Definition ELevelStreamingEnums.h:24
Definition LevelPreLoadInterface.h:23
virtual void OnPreLoadEnd(const FLevelStreamingContext Context)=0
virtual void OnPreLoadStart(const FLevelStreamingContext Context)=0
virtual ELevelStreamingEffectResult OnPreLoadUpdate(const FLevelStreamingContext Context)=0
Definition LevelPreLoadInterface.h:15
Definition LevelStreamingContext.h:16