runedoku: (Package) private class/method
This commit is contained in:
@@ -57,7 +57,7 @@ public enum RunedokuPiece
|
|||||||
this.pieceForSudoku = pieceForSudoku;
|
this.pieceForSudoku = pieceForSudoku;
|
||||||
}
|
}
|
||||||
|
|
||||||
int getId()
|
private int getId()
|
||||||
{
|
{
|
||||||
return pieceID;
|
return pieceID;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -5,11 +5,11 @@ package net.runelite.client.plugins.runedoku;
|
|||||||
*
|
*
|
||||||
* @author ?
|
* @author ?
|
||||||
*/
|
*/
|
||||||
public class Sudoku
|
class Sudoku
|
||||||
{
|
{
|
||||||
|
|
||||||
private int[][] board;
|
private int[][] board;
|
||||||
public static final int EMPTY = 0;
|
private static final int EMPTY = 0;
|
||||||
private static final int SIZE = 9;
|
private static final int SIZE = 9;
|
||||||
|
|
||||||
Sudoku(final int[][] board)
|
Sudoku(final int[][] board)
|
||||||
|
|||||||
Reference in New Issue
Block a user