OLS/Source/ols/Public/OLSMessages.h
2024-09-22 17:11:19 -04:00

28 lines
518 B
C++

// © 2024 Long Ly. All rights reserved. Any unauthorized use, reproduction, or distribution of this trademark is strictly prohibited and may result in legal action.
#pragma once
#include "CoreMinimal.h"
#include "UObject/Object.h"
#include "OLSMessages.generated.h"
USTRUCT(BlueprintType)
struct FOLSBasicMessage
{
GENERATED_BODY()
public:
UPROPERTY(BlueprintReadWrite, Category = "Message")
uint8 bShouldEnable : 1;
};
/**
*
*/
UCLASS()
class OLS_API UOLSMessages : public UObject
{
GENERATED_BODY()
};