Payback 0.0.1
CK Graduation Project
로딩중...
검색중...
일치하는것 없음
ObjectPoolingInterface.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"
7#include "ObjectPoolingInterface.generated.h"
8
9
10UINTERFACE(MinimalAPI)
11class UObjectPoolingInterface : public UInterface
12{
13 GENERATED_BODY()
14};
15
16
18{
19 GENERATED_BODY()
20
21public:
22 UFUNCTION(BlueprintNativeEvent, BlueprintCallable, Category = "ObjectPool")
23 void OnSpawnFromPool();
24
25 UFUNCTION(BlueprintNativeEvent, BlueprintCallable, Category = "ObjectPool")
26 void OnReturnToPool();
27};
Definition ObjectPoolingInterface.h:18
Definition ObjectPoolingInterface.h:12