PageRenderTime 25ms CodeModel.GetById 21ms RepoModel.GetById 0ms app.codeStats 0ms

/$(BaseDir)/Projects/115 ActionScript 3 - Flixel 2.5 Project/src/PlayState.as

http://github.com/Deviantg33k/Flixel-2.5-FlashDevelop-Template
ActionScript | 20 lines | 14 code | 6 blank | 0 comment | 0 complexity | 861acdb8c70b8d40b2762d124b2d721a MD5 | raw file
  1. package
  2. {
  3. import org.flixel.*;
  4. public class PlayState extends FlxState
  5. {
  6. override public function create():void
  7. {
  8. }
  9. override public function update():void
  10. {
  11. super.update();
  12. }
  13. }
  14. }