25 lines
		
	
	
		
			443 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			443 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| // Fill out your copyright notice in the Description page of Project Settings.
 | |
| 
 | |
| #pragma once
 | |
| 
 | |
| #include "CoreMinimal.h"
 | |
| #include "LuaPlayerState.h"
 | |
| #include "BusyPlayerState.generated.h"
 | |
| 
 | |
| /**
 | |
|  * 
 | |
|  */
 | |
| UCLASS()
 | |
| class BUSYRABBIT_API ABusyPlayerState : public ALuaPlayerState
 | |
| {
 | |
| 	GENERATED_BODY()
 | |
| 
 | |
| public:
 | |
| 	ABusyPlayerState();
 | |
| 	
 | |
| 
 | |
| public:
 | |
| 	UPROPERTY(EditDefaultsOnly, BlueprintReadWrite)
 | |
| 	TObjectPtr<class UInventoryComponent> Inventory;  // ²Ö¿â
 | |
| };
 |