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

20 lines
405 B
C++
Executable file

#pragma once
#include "CoreMinimal.h"
#include "CellId.generated.h"
USTRUCT(BlueprintType)
struct FSDENGINE_API FCellId {
GENERATED_BODY()
public:
UPROPERTY(EditAnywhere, meta=(AllowPrivateAccess=true))
int16 X;
UPROPERTY(EditAnywhere, meta=(AllowPrivateAccess=true))
int16 Y;
UPROPERTY(EditAnywhere, meta=(AllowPrivateAccess=true))
int16 Z;
FCellId();
};