CeresEngine 0.2.0
A game development framework
Loading...
Searching...
No Matches
CeresEngine::CInvocable Concept Reference

#include <CeresEngine/Concepts.hpp>

Concept definition

template<typename T, typename... Args>
concept CeresEngine::CInvocable = requires(T func, Args... args) {
func(args...);
}
Definition Concepts.hpp:43