Files
Commonwealth-Online-Public/plugin/lib/commonlibf4/include/Scaleform/F/Flags.h
T
2026-05-30 18:33:24 +12:00

8 lines
131 B
C++

#pragma once
namespace Scaleform
{
template <class E, class U = std::underlying_type_t<E>>
using Flags = REX::TEnumSet<E, U>;
}