36 lines
910 B
C++
36 lines
910 B
C++
// Fill out your copyright notice in the Description page of Project Settings.
|
|
|
|
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
#include "GameFramework/GameStateBase.h"
|
|
#include "LuckyRobotsGameState.generated.h"
|
|
|
|
class USocketIOClientComponent;
|
|
class USIOJsonValue;
|
|
/**
|
|
*
|
|
*/
|
|
UCLASS()
|
|
class LUCKYROBOTS_API ALuckyRobotsGameState : public AGameStateBase
|
|
{
|
|
GENERATED_BODY()
|
|
protected:
|
|
ALuckyRobotsGameState();
|
|
virtual void BeginPlay() override;
|
|
|
|
public:
|
|
UPROPERTY(Category = Character, VisibleAnywhere, BlueprintReadOnly, meta = (AllowPrivateAccess = "true"))
|
|
USocketIOClientComponent* SocketIOClientComponent;
|
|
|
|
public:
|
|
UFUNCTION(BlueprintCallable)
|
|
void DoSendMessage(FString SendValue);
|
|
|
|
UFUNCTION(BlueprintCallable)
|
|
void DoSocketOnConnect(FString SocketId, FString SessionId, bool IsReconnection);
|
|
|
|
UFUNCTION(BlueprintCallable)
|
|
void DoSocketOnGenericEvent(FString EventName, USIOJsonValue* EventData);
|
|
};
|