Implement sprite info emitting and posting ()

This commit is contained in:
Tim Mickel 2016-10-26 13:27:12 -04:00 committed by GitHub
parent 1dc4aaa2d7
commit 56ef01745f
6 changed files with 94 additions and 1 deletions
src/engine

View file

@ -105,6 +105,13 @@ Target.prototype.lookupOrCreateList = function (name) {
return newList;
};
/**
* Post/edit sprite info.
* @param {object} data An object with sprite info data to set.
* @abstract
*/
Target.prototype.postSpriteInfo = function () {};
/**
* Call to destroy a target.
* @abstract