Skip to content

Instantly share code, notes, and snippets.

@InternetCube
Last active December 20, 2025 10:04
Show Gist options
  • Select an option

  • Save InternetCube/562a75082f318fa40b58d5458425b306 to your computer and use it in GitHub Desktop.

Select an option

Save InternetCube/562a75082f318fa40b58d5458425b306 to your computer and use it in GitHub Desktop.
Example
// ... 省略
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