Skip to content

Instantly share code, notes, and snippets.

@hex13
Created October 5, 2013 20:25
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 hex13/6845628 to your computer and use it in GitHub Desktop.
Save hex13/6845628 to your computer and use it in GitHub Desktop.
createEntity
function createEntity(entityName, properties) {
var entity = Object.create(EntityPrototype);
entity.img = images[entityName];
for (var propertyName in properties)
entity[propertyName] = properties[propertyName];
entities.push(entity);
return entity;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment