gdxapp4d/core/src/love/distributedrebirth/demo4d/Demo4DMainAdapter.java
2022-01-29 05:50:02 +01:00

17 lines
301 B
Java

package love.distributedrebirth.demo4d;
import com.badlogic.gdx.ScreenAdapter;
/**
*
* @author willemtsade ©Δ∞ 仙上主天
*
*/
public class Demo4DMainAdapter extends ScreenAdapter {
protected final Demo4DMain main;
public Demo4DMainAdapter(Demo4DMain main) {
this.main = main;
}
}