Files
funnygame/public/tier1/utlinitlist.h
2025-07-30 23:53:26 +03:00

18 lines
484 B
C++

//================= Copyright kotofyt, All rights reserved ==================//
// C++ only supports std::initializer_list, so we need to get around compiler.
//
// fuck C++ once
// fuck C++ twice
// fuck C++ thrice
//===========================================================================//
#ifndef TIER1_UTL_INITIALIZER_LIST_H
#define TIER1_UTL_INITIALIZER_LIST_H
#include "initializer_list"
template<typename T>
using CUtlInitializerList = std::initializer_list<T>;
#endif