| 5 | |
| 6 | template <class T, class ... ArgTypes> |
| 7 | void QueueCommand(ArgTypes ... args) { T cmd = T(args...); QueueGameCommand(&cmd, sizeof(T)); } |
| 8 | |
| 9 | #define QUEUE_COMMAND(x,...) QueueCommand<x>(__VA_ARGS__) |
| 10 |
nothing calls this directly
no test coverage detected