forked from: flash on 2010-2-11
/**
* Copyright _azzip ( http://wonderfl.net/user/_azzip )
* MIT License ( http://www.opensource.org/licenses/mit-license.php )
* Downloaded from: http://wonderfl.net/c/7L4h
*/
// forked from azzip's flash on 2010-2-11
package
{
import flash.display.*;
import com.actionsnippet.qbox.*;
public class Test extends MovieClip
{
private var test:QuickBox2D;
public function Test()
{
stage.frameRate = 60;
test = new QuickBox2D(this);
test.createStageWalls();
test.addBox( { x:10, y:10, width:2, height:2 } );
test.addCircle( { x:10, y:10, radius:2 } );
test.start();
test.mouseDrag();
}
}
}