com.badlogic.gdx.utils.async.AsyncResultEmu Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of backend-teavm Show documentation
Show all versions of backend-teavm Show documentation
Tool to generate libgdx to javascript using teaVM
package com.badlogic.gdx.utils.async;
import com.github.xpenatan.gdx.backends.teavm.gen.Emulate;
@Emulate(AsyncResult.class)
public class AsyncResultEmu {
private final T result;
AsyncResultEmu(T result) {
this.result = result;
}
public boolean isDone() {
return true;
}
public T get() {
return result;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy