List of usage examples for com.badlogic.gdx.utils Utf8Decoder Utf8Decoder
public Utf8Decoder()
From source file:java.io.InputStreamReader.java
License:Open Source License
public InputStreamReader(InputStream in) { this.in = in; this.utf8Decoder = new Utf8Decoder(); }