⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 steplink.as

📁 Flash之五子棋之源代码
💻 AS
字号:
import Step;
class StepLink {
	private var step:Step;
	public var nextStep:StepLink;
	public var preStep:StepLink;
	public function StepLink() {
		this.step = new Step();
		this.nextStep = null;
		this.preStep = null;
	}
	public function get thisStep():Step {
		return this.step;
	}
	public function setStep(m:Number, n:Number, side:Number):Boolean {
		this.step.m = m;
		this.step.n = n;
		this.step.side = side;
		this.step.id = ++GoBang.pieceCount;
		return true;
	}
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -