mirror of
https://github.com/Jous99/F4MP.git
synced 2026-01-12 17:30:53 +01:00
6 lines
173 B
C++
6 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);
|
|
}
|