Begin javafx

This commit is contained in:
loic 2016-09-22 20:00:51 +02:00
parent f281a7189c
commit 5446859dee
17 changed files with 681 additions and 103 deletions

View file

@ -0,0 +1,8 @@
package observer;
/**
* Created by loic on 21/09/16.
*/
public interface IObserver {
void update();
}