瀏覽代碼

Merge commits Cell.cpp

GeorgeKolog 6 年之前
父節點
當前提交
101822c189
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      Cell.cpp

+ 1 - 1
Cell.cpp

@@ -163,7 +163,7 @@ void Cell::RecalculateTableWithCenterThisPoint() {
 	handleAllMoveableCellsAndUnmoveableCells_(qWithoutMoveable);
 	handleAllUnmoveableCells_(qWithoutMoveable);
 }
-std::vector <Cell*> Cell::actualPath(Cell* to) {//std::vector<Cell*> âêëþ÷àåòñÿ â ñåáÿ è this, è end
+std::vector <Cell*> Cell::actualPath(Cell* to) {//std::vector<Cell*> âêëþ÷àåòñÿ â ñåáÿ è this, è end
 	if (!to || !to->getisMoveable())return std::vector<Cell*>();
 	auto ret = std::vector<Cell*>(1, to);
 	while (to != this) {