Skip to content

Instantly share code, notes, and snippets.

@ekelokorpi
Created October 24, 2014 13:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ekelokorpi/7d0e61f278c0038b6ebb to your computer and use it in GitHub Desktop.
Save ekelokorpi/7d0e61f278c0038b6ebb to your computer and use it in GitHub Desktop.
Pool: Basic usage
// Create new pool
game.pool.create('MyPool');
var myObject = {};
// Put object to pool
game.pool.put('MyPool', myObject);
// Get object from pool
var myObject2 = game.pool.get('MyPool');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment