libGDX Collections, Pooling, JSON & Utilities
Quick reference for com.badlogic.gdx.utils.* — libGDX's GC-friendly collections, object pooling, JSON serialization, and utility classes. These replace java.util.* equivalents to reduce garbage collection pressure, especially on Android.
Array<T> — ArrayList Replacement
Array<String> arr = new Array<>(); // also: new Array<>(capacity), new Array<>(ordered, capacity)
Public fields: T[] items (backing arra
[Description truncada. Veja o README completo no GitHub.]