Merge pull request #36 from rubenpirreram/Javadoc-for-Game

Javadoc-for-Game
This commit is contained in:
rubenpirreram
2026-04-19 18:23:55 +02:00
committed by GitHub
2 changed files with 183 additions and 4 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);
}