Fix Game and add: Observer

This commit is contained in:
MatteoPellegrino05
2026-04-19 18:23:12 +02:00
parent 9b24ddfd7e
commit 84010ffd66
2 changed files with 20 additions and 1 deletions
@@ -0,0 +1,7 @@
package it.polimi.ingsw.gc14.Network;
import it.polimi.ingsw.gc14.Model.Game;
public interface Observer {
public void update(Game model);
}