class Game {
private static String plansza = "3x3";
public static String getPlansza() {
return plansza;
}
public static void setPlansza(String temp) {
plansza = temp;
}
}
public class Server {
String zmienna2;
public static void main(String[] args) {
// Game.setPlansza("2x2"); // możesz tak zrobić
zmienna2 = Game.getPlansza()
System.out.println(Game.getPlansza()); // za pomoca getera klasu Game zmienna
}
}
Za pomoca metod np. pobierasz metodą get zmienna z klasy Game, dodajac te zmienna lub np jak tutaj wypisujac w innej klasie