Async logic framework, box2D dependencies

This commit is contained in:
Anuken 2020-04-30 20:03:11 -04:00
parent 626a06ca00
commit 8de0ca7d6e
8 changed files with 101 additions and 1 deletions

View file

@ -0,0 +1,13 @@
package mindustry.async;
public interface AsyncProcess{
/** Synchronous. Called at the beginning of the main loop. */
void begin();
/** Async. Called in a separate thread. */
void process();
/** Sync. Called in the end of the main loop. */
void end();
}