March 2019
Intermediate to advanced
708 pages
17h 9m
English
class CHAPTER_07_API IInteractable{ GENERATED_BODY() // Add interface functions to this class. This is the class that // will be inherited to implement this interface.public: UFUNCTION(BlueprintNativeEvent, BlueprintCallable, Category = Interactable) bool CanInteract(); UFUNCTION(BlueprintNativeEvent, BlueprintCallable, Category = Interactable) void PerformInteract();};
class CHAPTER_07_API IOpenable{ GENERATED_BODY() // Add interface functions to this class. This is the class that // will be inherited to implement this interface. ...