1
0
mirror of https://github.com/inf112-v20/Fiasko.git synced 2025-03-03 00:29:45 +01:00

la til getters og sertters for client og server

This commit is contained in:
Tobydrama 2020-04-14 14:47:42 +02:00
parent 1cace21e88
commit b1892e3447

@ -1,6 +1,8 @@
package inf112.fiasko.roborally.objects;
import inf112.fiasko.roborally.element_properties.GameState;
import inf112.fiasko.roborally.networking.RoboRallyClient;
import inf112.fiasko.roborally.networking.RoboRallyServer;
import java.util.List;
@ -63,4 +65,10 @@ public interface IDrawableGame {
*/
GameState getGameState();
RoboRallyClient getClient();
void setClient(RoboRallyClient client);
void setServer(RoboRallyServer server);
}