mirror of
https://github.com/2009scape/2009Scape-mobile.git
synced 2025-12-18 04:20:11 -07:00
18 lines
361 B
Java
18 lines
361 B
Java
package net.kdt.pojavlaunch;
|
|
|
|
import android.content.*;
|
|
import android.util.*;
|
|
import android.view.*;
|
|
|
|
public class MinecraftGLView extends TextureView
|
|
{
|
|
public MinecraftGLView(Context context) {
|
|
this(context, null);
|
|
}
|
|
|
|
public MinecraftGLView(Context context, AttributeSet attributeSet) {
|
|
super(context, attributeSet);
|
|
}
|
|
|
|
|
|
}
|