mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-09-02 04:03:46 +00:00
16 lines
372 B
C++
16 lines
372 B
C++
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "TrackMovement.h"
|
|
#include "RepTrackMovement.generated.h"
|
|
|
|
USTRUCT(BlueprintType)
|
|
struct FRepTrackMovement : public FTrackMovement {
|
|
GENERATED_BODY()
|
|
public:
|
|
UPROPERTY(BlueprintReadWrite, EditAnywhere, Transient, meta=(AllowPrivateAccess=true))
|
|
float Timestamp;
|
|
|
|
FORTNITEGAME_API FRepTrackMovement();
|
|
};
|
|
|