Skip to content

Instantly share code, notes, and snippets.

@Ohmnivore
Created June 22, 2014 01:13
Show Gist options
  • Save Ohmnivore/688c897b9372256b739a to your computer and use it in GitHub Desktop.
Save Ohmnivore/688c897b9372256b739a to your computer and use it in GitHub Desktop.
IceEntity script example
package;
import flixel.FlxG;
//request Player;
class TestScript
{
public function new()
{
FlxG.log.add("TestFunction");
}
public function reload():Void
{
}
public function update():Void
{
}
public function destroy():Void
{
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment