diff --git a/cmd/server/games.go b/cmd/server/games.go index 71c0197..d9328ae 100644 --- a/cmd/server/games.go +++ b/cmd/server/games.go @@ -199,3 +199,19 @@ func (games Games) GameState(ctx context.Context, id string) (GameState, error) return result, err } + +func (games Games) CreateEventPlayerJoin(ctx context.Context, id string, playerJoin EventPlayerJoin) error { + return io.EOF +} + +func (games Games) CreateEventPlayerLeave(ctx context.Context, id string, playerLeave EventPlayerLeave) error { + return io.EOF +} + +func (games Games) CreateEventGameComplete(ctx context.Context, id string) error { + return io.EOF +} + +func (games Games) CreateEventAssignmentRotation(ctx context.Context, id string, killer, killed, killWord string) error { + return io.EOF +}