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

View File

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