Back to project page CircleWorldGDX.
The source code is released under:
MIT License
If you think the Android project CircleWorldGDX listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.fdangelo.circleworld.universeengine.utils; public class DataPools { static public PoolVector3 poolVector3 = new PoolVector3(1024); static public PoolVector2 poolVector2 = new PoolVector2(1024); static public PoolColor poolColor = new PoolColor(1024); static public PoolFloat poolFloat = new PoolFloat(1024); static public PoolByte poolByte = new PoolByte(1024); static public PoolInt poolInt = new PoolInt(1024); }