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() 

Source Link

Document

Creates a new Queue which can hold 16 values without needing to resize backing array.

Usage

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

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

From source file:com.mbrlabs.mundus.commons.scene3d.traversal.BreadthFirstIterator.java

License:Apache License

public BreadthFirstIterator(GameObject root) {
    queue = new Queue<GameObject>();
    queue.addLast(root);
}