#pragma once template auto BindEvent(T apFunc, U apInstance) { return std::bind(apFunc, apInstance, std::placeholders::_1, std::placeholders::_2); }