DRG-Femboy-Voice/Source/FSDEngine/Public/CellBox.h
2025-04-15 12:39:31 -07:00

18 lines
398 B
C++
Executable file

#pragma once
#include "CoreMinimal.h"
#include "CellId.h"
#include "CellBox.generated.h"
USTRUCT(BlueprintType)
struct FCellBox {
GENERATED_BODY()
public:
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
FCellId Min;
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
FCellId Max;
FSDENGINE_API FCellBox();
};