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