forked from: Sample Flash Game

by makc3d forked from Sample Flash Game (diff: 18)
You paste your classes to the end of this thing:
♥0 | Line 13 | Modified 2012-06-03 02:38:00 | MIT License
play

ActionScript3 source code

/**
 * Copyright makc3d ( http://wonderfl.net/user/makc3d )
 * MIT License ( http://www.opensource.org/licenses/mit-license.php )
 * Downloaded from: http://wonderfl.net/c/kYMZ
 */

// forked from blackrece's Sample Flash Game
package {
    import flash.display.Sprite;
    
    import org.flixel.*;
    /* 
    * You paste your classes to the end of this thing:
    */
    
    public class FlashTest extends Sprite {
        public function FlashTest() {
            // write as3 code here..
            var kong:QuickKong = new QuickKong;
        }
    }
}

/*
* note no "public" before "class" keyword:
*/
class QuickKong {
    public function QuickKong () {
        // bla bla
    }
}