mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-09-02 19:24:04 +00:00
14 lines
233 B
C++
14 lines
233 B
C++
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "EFortPIDValueGraphElements.generated.h"
|
|
|
|
UENUM(BlueprintType)
|
|
namespace EFortPIDValueGraphElements {
|
|
enum Type {
|
|
Proportional,
|
|
Integral,
|
|
Max_None,
|
|
};
|
|
}
|
|
|