fix: removed Req from EventTypes as it's now a request, not an event

This commit is contained in:
Yannik Bretschneider 2021-05-11 04:25:35 +02:00
parent 1a98f25139
commit 7129f0f3ab
3 changed files with 7 additions and 1 deletions

View File

@ -5,7 +5,6 @@ public enum EventType {
// GameStateEvents
Ack,
Nack,
Req,
GameStateEvent,
CustomEvent,

View File

@ -0,0 +1,2 @@
package uulm.teamname.marvelous.gamelibrary.json.ingame;public class EventDeserializer {
}

View File

@ -0,0 +1,5 @@
import static org.mockito.Mockito.*;
import static org.junit.jupiter.api.Assertions.*;
class JSONTest {
}