Skip to content
Snippets Groups Projects
Commit 24645ed3 authored by HEBBACHE Mohamed's avatar HEBBACHE Mohamed
Browse files

fix some problems with git

parent c8912355
No related branches found
No related tags found
No related merge requests found
Pipeline #25790 passed
Showing
with 0 additions and 16 deletions
No preview for this file type
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
...@@ -14,22 +14,6 @@ import java.util.List; ...@@ -14,22 +14,6 @@ import java.util.List;
* @param <E> The type of elements stored in the grid. * @param <E> The type of elements stored in the grid.
*/ */
public interface Grid<E> { public interface Grid<E> {
/**
* Repaint the grid with a list of elements, each associated with their respective positions.
*
* @param elements A list of pairs, each containing a position and the element to be displayed at that position.
*/
// void repaint(List<Pair<Position, E>> elements);
/**
* Repaint the grid with a two-dimensional array of elements. The array's dimensions should match
* the row and column count of the grid.
*
* @param elements A two-dimensional array of elements to be displayed on the grid.
*/
// void repaint(E[][] elements);
/** /**
* Set the dimensions of the grid to the specified number of columns, number of rows, square width, * Set the dimensions of the grid to the specified number of columns, number of rows, square width,
* and square height. * and square height.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment