17 lines
259 B
Java
17 lines
259 B
Java
package main;
|
|
import java.util.List;
|
|
|
|
public class CarteLieu {
|
|
|
|
public List<Joueur> getJoueursAdjacents() {
|
|
// TODO Auto-generated method stub
|
|
return null;
|
|
}
|
|
|
|
public List<Joueur> getJoueurs() {
|
|
// TODO Auto-generated method stub
|
|
return null;
|
|
}
|
|
|
|
}
|