27 lines
		
	
	
		
			560 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			560 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| // Fill out your copyright notice in the Description page of Project Settings.
 | |
| 
 | |
| #pragma once
 | |
| #include "slua.h"
 | |
| #include "CoreMinimal.h"
 | |
| #include "PaperZDCharacter.h"
 | |
| #include "BusyCharacter.generated.h"
 | |
| 
 | |
| /**
 | |
|  * 
 | |
|  */
 | |
| UCLASS()
 | |
| class BUSYRABBIT_API ABusyCharacter : public APaperZDCharacter, public ILuaOverriderInterface
 | |
| {
 | |
| 	GENERATED_BODY()
 | |
| 
 | |
| public:
 | |
| 	virtual FString GetLuaFilePath_Implementation() const override;
 | |
| 
 | |
| 	//UFUNCTION(BlueprintNativeEvent)
 | |
| 	//FString GetLuaFilePath()const;
 | |
| 
 | |
| 	UPROPERTY(EditDefaultsOnly, BlueprintReadWrite)
 | |
| 	FString LuaFilePath;
 | |
| 	
 | |
| };
 |