Merge remote-tracking branch 'origin/master'

# Conflicts:
#	CMakeLists.txt
This commit is contained in:
2024-08-21 13:22:37 -04:00
4 changed files with 21 additions and 8 deletions

View File

@@ -2,13 +2,14 @@
/// @description Templated BasicEvent Hook Class modeled after C# events
/// @author Josh O'Leary - Redacted Software
/// @revision 3
/// @lastedit 2024-02-21
/// @lastedit 2024-06-01
/// @license Unlicense - Public Domain
#pragma once
#include <chrono>
#include <functional>
#include <memory>
// TODO: ThreadSafeEvent / AsyncEvent version of the class.
// TODO: ConsumableEvent - a version that can be "consumed" by a callback by returning true. It will be sunk and not passed to further callbacks.