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

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

Introduction

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

Prototype

public ShortArray() 

Source Link

Document

Creates an ordered array with a capacity of 16.

Usage

From source file:com.andgate.ikou.render.TileMesh.java

License:Open Source License

public TileMesh() {
    vertices = new FloatArray();
    indicies = new ShortArray();
}