Given that my function takes in a std::function<void(void)>, how could I pass in a function by declaration / name?
As in
void start(std::chrono::milliseconds interval, std::function<void(void)> func);
void ChaosModController::Start() {
_timer->start(_intervalTime, Interval); // <-- Making this work
}
void ChaosModController::Interval() {
}

