mirror of
https://github.com/guezoloic/L3-racing-game.git
synced 2026-03-28 19:13:41 +00:00
14 lines
253 B
Java
14 lines
253 B
Java
package model;
|
|
@FunctionalInterface
|
|
/**
|
|
* L'interface utilisée pour Game.
|
|
*/
|
|
public interface GObserver
|
|
{
|
|
/**
|
|
*
|
|
* @return true si la fonction s'est bien passé sinon false (le programme va se
|
|
* stopper)
|
|
*/
|
|
public boolean apply();
|
|
} |