flash on 2013-3-25
♥0 |
Line 18 |
Modified 2013-03-25 11:24:48 |
MIT License
archived:2017-03-20 03:14:21
ActionScript3 source code
/**
* Copyright PESakaTFM ( http://wonderfl.net/user/PESakaTFM )
* MIT License ( http://www.opensource.org/licenses/mit-license.php )
* Downloaded from: http://wonderfl.net/c/gQ8V
*/
package {
import flash.display.Sprite;
public class FlashTest extends Sprite {
public function FlashTest() {
// write as3 code here..
}
}
}
class board {
}
class square {
private var _x:int
public function get x():int {return _x;}
private var _y:int;
public function get y():int {return _y;}
private var _hasQueen:Boolean = false;
public function get hasQueen():Boolean {return _hasQueen;}
public function set hasQueen(value:Boolean):void {_hasQueen = value;}
}