round explosions

This commit is contained in:
Vinzenz Schroeter 2024-04-28 18:44:03 +02:00
parent c0172963d5
commit f1dec16571
3 changed files with 48 additions and 27 deletions

View file

@ -24,4 +24,7 @@ internal sealed class Sprite(bool?[,] data)
}
public bool? this[int x, int y] => data[x, y];
public int Width => data.GetLength(0);
public int Height => data.GetLength(1);
}