forked from: Sample Flash Game
forked from Sample Flash Game (diff: 18)
You paste your classes to the end of this thing:
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
}
}