5 lines
83 B
Java
5 lines
83 B
Java
|
import java.awt.Point;
|
||
|
|
||
|
public interface ProducteurDePoints {
|
||
|
Point suivant();
|
||
|
}
|