11 lines
182 B
C
Executable file
11 lines
182 B
C
Executable file
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "ECrossbowSwitchState.generated.h"
|
|
|
|
UENUM()
|
|
enum class ECrossbowSwitchState : int32 {
|
|
Normal,
|
|
Cancelled,
|
|
DuringReload,
|
|
};
|
|
|