gdxapp4d/core/src/love/distributedrebirth/demo4d/Demo4DMainAdapter.java

17 lines
301 B
Java
Raw Normal View History

2022-01-28 11:00:59 +00:00
package love.distributedrebirth.demo4d;
import com.badlogic.gdx.ScreenAdapter;
/**
*
* @author willemtsade ©Δ 仙上主天
*
*/
2022-01-28 11:00:59 +00:00
public class Demo4DMainAdapter extends ScreenAdapter {
protected final Demo4DMain main;
public Demo4DMainAdapter(Demo4DMain main) {
this.main = main;
}
}