| 3 | import java.util.List; |
| 4 | |
| 5 | public interface JakeServer { |
| 6 | void update(long time); |
| 7 | |
| 8 | List<client_t> getClientsForInstance(String gameName); |
| 9 | |
| 10 | List<client_t> getClients(); |
| 11 | |
| 12 | void SV_BroadcastPrintf(int level, String s, String name); |
| 13 | |
| 14 | void SV_Shutdown(String message, boolean reconnect); |
| 15 | } |
no outgoing calls
no test coverage detected