static public void MoveNxt() { if (UGPMan == null) { return; } UGPMan = UGPMan.GPMnxt; if (UGPMan == null) { return; } pGNPX_Eng.pGP = UGPMan.pGPsel; }
public bool CreateNextStage() { if (pGPsel == null) { return(true); } UPuzzleMan Q = new UPuzzleMan(stageNo + 1); Q.GPMpre = this; this.GPMnxt = Q; pGNPX_Eng.pGP = pGPsel.Copy(stageNo + 1, 0); SDK_Ctrl.UGPMan = Q; return(false); }
static public void MovePre() { if (UGPMan == null) { return; } UGPMan = UGPMan.GPMpre; if (UGPMan == null) { return; } pGNPX_Eng.pGP = UGPMan.pGPsel; }