t8-mod/source/proxy-dll/component/keycatchers.hpp
project-bo4 84facee97e Functionality Improvements
+ Added 'keycatchers' as an standalone component
+ Improvement to logger with output division
+ Improvements to game console
2024-07-29 02:08:10 -04:00

10 lines
249 B
C++

#pragma once
namespace keycatchers
{
using ke_typedef = std::function<bool(int, int, bool, unsigned int)>;
using ch_typedef = std::function<bool(int, int, bool)>;
void add_key_event(ke_typedef&& func);
void add_char_event(ch_typedef&& func);
}