Module runner

Source

Structs§

Runner
The struct that runs every thing. When ran, every single frame it will run the process method from it’s logic (which will mutate the CharBuffer), print the char buffer to the screen, and if process returned continue it will wait for the next frame.

Enums§

ProcessReturn
The enum returned by the process fn of a logic class. If End is returned, the runner will cease, otherwise it will continue.

Traits§

Logic
The trait used to define the behaviour of a runner.