diff options
Diffstat (limited to 'internal_rewrite/lag_mgr.hpp')
| -rw-r--r-- | internal_rewrite/lag_mgr.hpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/internal_rewrite/lag_mgr.hpp b/internal_rewrite/lag_mgr.hpp index aa22c29..4f64c24 100644 --- a/internal_rewrite/lag_mgr.hpp +++ b/internal_rewrite/lag_mgr.hpp @@ -34,6 +34,10 @@ namespace features return m_held_ticks; } + bool has_fired( ) const { + return m_has_fired; + } + int get_sent( ) const { return m_sent_ticks; } @@ -56,5 +60,6 @@ namespace features int m_sent_ticks{ }; int m_held_ticks{ }; bool m_breaking_lc{ }; + bool m_has_fired{ }; }; }
\ No newline at end of file |
