20 lines
405 B
C++
Executable file
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();
|
|
};
|
|
|