-
-
Save InternetCube/562a75082f318fa40b58d5458425b306 to your computer and use it in GitHub Desktop.
Example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ... 省略 | |
| DECLARE_DYNAMIC_MULTICAST_DELEGATE(FFailure); | |
| UCLASS() | |
| class PROJECT_API AExampleActor : public AActor | |
| { | |
| GENERATED_BODY() | |
| public: | |
| UPROPERTY(BlueprintAssignable, BlueprintCallable) | |
| FFailure OnFailure; | |
| bool Request(); | |
| void OnReceived(FHttpRequestPtr Request, FHttpResponsePtr Response, bool bSuccessful); | |
| // ... 省略 | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment