//================= 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 using CUtlInitializerList = std::initializer_list; #endif