MCPcopy Index your code
hub / github.com/libgdx/libgdx / ScreenAdapter

Class ScreenAdapter

gdx/src/com/badlogic/gdx/ScreenAdapter.java:21–49  ·  view source on GitHub ↗

Convenience implementation of Screen. Derive from this and only override what you need. @author semtiko

Source from the content-addressed store, hash-verified

19/** Convenience implementation of {@link Screen}. Derive from this and only override what you need.
20 * @author semtiko */
21public class ScreenAdapter implements Screen {
22 @Override
23 public void render (float delta) {
24 }
25
26 @Override
27 public void resize (int width, int height) {
28 }
29
30 @Override
31 public void show () {
32 }
33
34 @Override
35 public void hide () {
36 }
37
38 @Override
39 public void pause () {
40 }
41
42 @Override
43 public void resume () {
44 }
45
46 @Override
47 public void dispose () {
48 }
49}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected