Skip to content

Instantly share code, notes, and snippets.

@ibilon
Created November 9, 2013 21:42
Show Gist options
  • Save ibilon/7390397 to your computer and use it in GitHub Desktop.
Save ibilon/7390397 to your computer and use it in GitHub Desktop.
class Entity extends com.haxepunk.Entity
{
public var worldCollider : IEntityBehavior;
public var moveHandler : IEntityBehavior;
override public function update ()
{
worldCollider.update();
moveHandler.update();
super.update();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment