Commit 00669426 authored by Haj Rezvan's avatar Haj Rezvan

The program updated to version 0.2

parent 6d86460c
...@@ -3,11 +3,18 @@ import java.io.IOException; ...@@ -3,11 +3,18 @@ import java.io.IOException;
public interface IBoard { public interface IBoard {
char[] getMap(); char[] getMap();
char[][] getVisualMap(); char[][] getVisualMap();
void printMap() throws IOException, InterruptedException;
// void setMapByPosition(int position, char nut); static void printMap() throws IOException, InterruptedException {
}
// void setMapByPosition(int position, char nut);
// void setVisualMapByPosition(int xPosition, int yPosition, char nut); // void setVisualMapByPosition(int xPosition, int yPosition, char nut);
int searchPosition(char c); int searchPosition(char c);
void setMap(char[] map); void setMap(char[] map);
void setVisualMap(char[][] visualMap); void setVisualMap(char[][] visualMap);
void refresh() throws IOException, InterruptedException;
static void refresh() throws IOException, InterruptedException {
}
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment