var entity = new IgeEntity();
entity.addBehaviour('myBehaviour', function () {
// Code here will execute during each engine update for
// this entity. I can access the entity via the "this"
// keyword such as:
this._somePropertyOfTheEntity = 'moo';
});
// Now remove the "myBehaviour" behaviour
entity.removeBehaviour('myBehaviour');