17 lines
301 B
Java
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;
|
|
}
|
|
}
|