11 lines
182 B
C
Executable file
11 lines
182 B
C
Executable file
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "ERicochetBehavior.generated.h"
|
|
|
|
UENUM(BlueprintType)
|
|
enum class ERicochetBehavior : uint8 {
|
|
All,
|
|
PawnsOnly,
|
|
NotPawns,
|
|
};
|
|
|