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

20 lines
420 B
C++
Executable file

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