mirror of
https://github.com/Jous99/F4MP.git
synced 2026-01-13 00:40:53 +01:00
7 lines
173 B
C
7 lines
173 B
C
|
|
#pragma once
|
||
|
|
|
||
|
|
template <class T, class U> auto BindEvent(T apFunc, U apInstance)
|
||
|
|
{
|
||
|
|
return std::bind(apFunc, apInstance, std::placeholders::_1, std::placeholders::_2);
|
||
|
|
}
|