Zappy Server
C++ game server: world, rules, scheduler, network
Loading...
Searching...
No Matches
overloaded.hpp
Go to the documentation of this file.
1#pragma once
2
3template <class... Ts>
4struct overloaded : Ts... {
5 using Ts::operator()...;
6};