ServicesUtils
Reference utility templates for handling responses from Unity services.
阅读时间1 分钟最后更新于 4 天前
命名空间
Unity::Services::Core
Include(包括)
#include "Utils/ServicesUtils.h"
模板
THandler
语法
#if ((ENGINE_MAJOR_VERSION == 4) && (ENGINE_MINOR_VERSION >= 26)) || (ENGINE_MAJOR_VERSION >= 5) template <typename T> using THandler = TDelegate<void(const T&)>;#else template <typename T> using THandler = TBaseDelegate<void, const T&>;#endif