Created
June 22, 2014 01:13
-
-
Save Ohmnivore/688c897b9372256b739a to your computer and use it in GitHub Desktop.
IceEntity script example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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