Explorar o código

Merge commits Cell.cpp

GeorgeKolog %!s(int64=6) %!d(string=hai) anos
pai
achega
101822c189
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  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) {