Example usage for com.badlogic.gdx.utils Utf8Decoder Utf8Decoder

List of usage examples for com.badlogic.gdx.utils Utf8Decoder Utf8Decoder

Introduction

In this page you can find the example usage for com.badlogic.gdx.utils Utf8Decoder Utf8Decoder.

Prototype

public Utf8Decoder() 

Source Link

Usage

From source file:java.io.InputStreamReader.java

License:Open Source License

public InputStreamReader(InputStream in) {
    this.in = in;
    this.utf8Decoder = new Utf8Decoder();
}