add EventFilter::getCallback

This commit is contained in:
HJfod 2023-04-04 21:56:18 +03:00
parent b44b5d3cd3
commit ed8d230733
2 changed files with 5 additions and 1 deletions
VERSION
loader/include/Geode/loader

View file

@ -1 +1 @@
1.0.0-beta.12
1.0.0-beta.13

View file

@ -124,6 +124,10 @@ namespace geode {
return m_filter;
}
utils::MiniFunction<Callback>& getCallback() {
return m_callback;
}
protected:
utils::MiniFunction<Callback> m_callback = nullptr;
T m_filter;