From 46776e718d10c28710d43bafc7ad8730e7c7951e Mon Sep 17 00:00:00 2001 From: Chaoscaot Date: Tue, 7 Jun 2022 20:18:57 +0200 Subject: [PATCH] locale Packet --- .../server/LocaleInvalidationPacket.java | 35 +++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 src/de/steamwar/network/packets/server/LocaleInvalidationPacket.java diff --git a/src/de/steamwar/network/packets/server/LocaleInvalidationPacket.java b/src/de/steamwar/network/packets/server/LocaleInvalidationPacket.java new file mode 100644 index 0000000..1e24547 --- /dev/null +++ b/src/de/steamwar/network/packets/server/LocaleInvalidationPacket.java @@ -0,0 +1,35 @@ +/* + * This file is a part of the SteamWar software. + * + * Copyright (C) 2022 SteamWar.de-Serverteam + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + */ + +package de.steamwar.network.packets.server; + +import de.steamwar.network.packets.NetworkPacket; +import lombok.AllArgsConstructor; +import lombok.EqualsAndHashCode; +import lombok.Getter; +import lombok.NoArgsConstructor; + +@AllArgsConstructor +@NoArgsConstructor +@EqualsAndHashCode(callSuper = true) +@Getter +public class LocaleInvalidationPacket extends NetworkPacket { + private static final long serialVersionUID = 1113963147008168582L; + private int playerId; +}