Nazara Engine
0.4
A fast, complete, cross-platform API designed for game development
|
Core class that represents a functor using a function with arguments. More...
Inherits Nz::Functor.
Public Member Functions | |
FunctorWithArgs (F func, Args &&... args) | |
Constructs a FunctorWithArgs object with a function and its arguments. More... | |
void | Run () override |
Runs the function. | |
Core class that represents a functor using a function with arguments.
Nz::FunctorWithArgs< F, Args >::FunctorWithArgs | ( | F | func, |
Args &&... | args | ||
) |
Constructs a FunctorWithArgs object with a function and its arguments.
func | Function to execute |
args | Arguments for the function |