Stats
Statsを利用する
♥0 |
Line 9 |
Modified 2010-07-30 23:11:23 |
MIT License
archived:2017-03-20 13:31:58
ActionScript3 source code
/**
* Copyright takishiki ( http://wonderfl.net/user/takishiki )
* MIT License ( http://www.opensource.org/licenses/mit-license.php )
* Downloaded from: http://wonderfl.net/c/bCut
*/
/*
Statsを利用する
*/
package {
import flash.display.Sprite;
import net.hires.debug.Stats; // Statsクラス読込
public class FlashTest extends Sprite {
public function FlashTest() {
addChild(new Stats()); // Statsを表示する
}
}
}