Skip to content

Instantly share code, notes, and snippets.

@need4spd
Created February 13, 2019 14:19
Show Gist options
  • Save need4spd/44aa8219844dfcdc25ebac27e8213d76 to your computer and use it in GitHub Desktop.
Save need4spd/44aa8219844dfcdc25ebac27e8213d76 to your computer and use it in GitHub Desktop.
MyPoolableObject
public class MyPoolableObject {
private static int id = 0;
public MyPoolableObject() { id++; }
public int getId() { return id; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment