# ServicesUtils

> Reference utility templates for handling responses from Unity services.

##### 名前空間##namespace

```cpp
Unity::Services::Core
```

##### Include (含める)##include

```cpp
#include "Utils/ServicesUtils.h"
```

## テンプレート##templates

### THandler##thandler

#### 構文##syntax

```cpp
#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
```
