Fix gradle run
This commit is contained in:
parent
aad5c8a544
commit
38af64cdf0
@ -3,6 +3,11 @@
|
||||
*/
|
||||
|
||||
plugins {
|
||||
id 'application'
|
||||
id 'fr.lnl.game.java-library-conventions'
|
||||
}
|
||||
|
||||
application {
|
||||
mainClassName = 'fr.lnl.game.server.games.grid.Grid'
|
||||
}
|
||||
|
||||
|
@ -15,7 +15,7 @@ public class Grid {
|
||||
public Grid(int x, int y){
|
||||
this.x = x;
|
||||
this.y = y;
|
||||
board = new HashMap<Point<Integer, Integer>, Triplet<Box, Box, Box>>();
|
||||
board = new HashMap<>();
|
||||
}
|
||||
|
||||
public void initGrid(){
|
||||
|
Loading…
Reference in New Issue
Block a user