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

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

Introduction

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

Prototype

public Queue(int initialSize) 

Source Link

Document

Creates a new Queue which can hold the specified number of values without needing to resize backing array.

Usage

From source file:com.intrepid.nicge.utilz.containers.Stack.java

public Stack(int size) {
    queue = new Queue<>(size);
}