Example usage for com.badlogic.gdx.utils Array subclass-usage

List of usage examples for com.badlogic.gdx.utils Array subclass-usage

Introduction

In this page you can find the example usage for com.badlogic.gdx.utils Array subclass-usage.

Usage

From source file com.andgate.ikou.utility.Array2d.java

public class Array2d<T> extends Array<Array<T>> {
    public Array2d() {
        super();
        add(new Array<T>());
    }

From source file com.torrosoft.sopistan.core.wrappers.FixedList.java

/**
 * A simple extension of Array that allows inserting an element at the head (index 0) without ever
 * growing the backing array. Elements are shifted right and eventually discarded to make way for
 * new additions.
 * 
 * @author mattdesl

From source file de.longri.cachebox3.utils.FileList.java

public class FileList extends Array<File> implements Comparator<File> {
    private static final long serialVersionUID = 2454564654L;

    public FileList(String path, String extension) {
        ini(path, extension, false);
    }

From source file gameplay.map.pathfinding.Chemin.java

/**
 *
 * @author Stage
 */
public class Chemin extends Array<Tuile> implements GraphPath<Tuile> {