|
Grindstone Game Engine v0.2.0
An open source game engine and toolkit.
|
Public Types | |
| enum class | Status { Queued , InProgress , Done } |
Public Member Functions | |
| Task (const Task &other) | |
| Task (Task &&other)=default | |
| Task (std::string &name, std::function< void()> fnPtr) | |
Public Attributes | |
| std::string | name |
| std::function< void()> | fnPtr |
| std::thread | thread |
| Status | status |