Shorten toggleCell Function Name

This commit is contained in:
Unknown 2018-10-23 21:01:27 +02:00
parent 2e7fd7c3d3
commit e40dddde52
2 changed files with 4 additions and 4 deletions

View file

@ -72,7 +72,7 @@ class Simulation {
return math.Point<int>(cx.toInt(), cy.toInt());
}
void toggleCellState(int x, int y) {
void toggleCell(int x, int y) {
map.set(x, y, !map.get(x, y));
}