#ifndef OPENMW_COMPONENTS_MISC_META_H #define OPENMW_COMPONENTS_MISC_META_H #include #include namespace Misc { template struct TupleHasType; template struct TupleHasType> { static constexpr bool value = (std::is_same_v || ...); }; } #endif