Home | History | Annotate | Download | only in tests
      1 package com.badlogic.gdx.tests;
      2 
      3 import com.badlogic.gdx.Gdx;
      4 import com.badlogic.gdx.tests.utils.GdxTest;
      5 
      6 public class ShortSoundTest extends GdxTest {
      7 
      8 	@Override
      9 	public void create () {
     10 		Gdx.audio.newSound(Gdx.files.internal("data/tic.ogg")).play();
     11 	}
     12 
     13 }
     14