Files
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

14 lines
252 B
C

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "Misc/EnumClassFlags.h"
enum class ETranslucencyView
{
None = 0,
UnderWater = 1 << 0,
AboveWater = 1 << 1,
RayTracing = 1 << 2
};
ENUM_CLASS_FLAGS(ETranslucencyView);