diff options
author | Joel Kronqvist <joel.kronqvist@iki.fi> | 2024-11-17 14:19:58 +0200 |
---|---|---|
committer | Joel Kronqvist <joel.kronqvist@iki.fi> | 2024-11-17 14:20:27 +0200 |
commit | 5060c66738898913ca880d83b0fdcd5be2e0b59d (patch) | |
tree | bd4ecd70ebb8cc0342bd0a29c91c5b27fed38fb6 /src/scalevalapokalypsi/Server/Client.scala | |
parent | 4de67b497e0e229fe4a42f66f833640b6e50fd5a (diff) | |
download | scalevalapokalypsi-5060c66738898913ca880d83b0fdcd5be2e0b59d.tar.gz scalevalapokalypsi-5060c66738898913ca880d83b0fdcd5be2e0b59d.zip |
Small style fixes (mostly shortening comment lines written by others...)
Diffstat (limited to 'src/scalevalapokalypsi/Server/Client.scala')
-rw-r--r-- | src/scalevalapokalypsi/Server/Client.scala | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/scalevalapokalypsi/Server/Client.scala b/src/scalevalapokalypsi/Server/Client.scala index 6ce2522..8716ca9 100644 --- a/src/scalevalapokalypsi/Server/Client.scala +++ b/src/scalevalapokalypsi/Server/Client.scala @@ -4,7 +4,8 @@ import java.net.Socket import scala.math.min import scalevalapokalypsi.constants.* import ServerProtocolState.* -import scalevalapokalypsi.Model.{Action,Player,Entity} +import scalevalapokalypsi.Model.Action +import scalevalapokalypsi.Model.Entities.Player class Client(val socket: Socket): private var incompleteMessage: Array[Byte] = |