[+] Add AuConsumer typedef

This commit is contained in:
Reece Wilson 2021-10-28 21:49:27 +00:00
parent a9327e719c
commit c64aa966e7

View File

@ -30,6 +30,12 @@ using AuString = std::string;
using AuUInt = size_t;
#endif
#if !defined(AU_Consumer)
#define AU_Consumer
template<typename ...T>
using AuConsumer = std::function<void(T...)>;
#endif
#endif
///////////////////////////////////////////////////////////////////////////////////////////