19 lines
220 B
C
19 lines
220 B
C
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
|
|
UENUM(BlueprintType)
|
|
enum class ERRDAHeaterType : uint8
|
|
{
|
|
Biomass,
|
|
Coal,
|
|
Solution,
|
|
Nuclear
|
|
};
|
|
|
|
UENUM(BlueprintType)
|
|
enum class ERRDACoolerType : uint8
|
|
{
|
|
Chemical,
|
|
Steam
|
|
}; |