diff options
author | Joel Kronqvist <joel.kronqvist@iki.fi> | 2024-11-21 21:09:52 +0200 |
---|---|---|
committer | Joel Kronqvist <joel.kronqvist@iki.fi> | 2024-11-21 21:09:52 +0200 |
commit | 607b43a84d3bc8edffa05c722c7b8c3e6f72e964 (patch) | |
tree | 8503eeb4822f11ca1f0f86ef17283aacb9a7a6e2 /src/scalevalapokalypsi/Client/Turn.scala | |
parent | fe2543627bcec1ea0f7a429bede20ca293458ba9 (diff) | |
download | scalevalapokalypsi-607b43a84d3bc8edffa05c722c7b8c3e6f72e964.tar.gz scalevalapokalypsi-607b43a84d3bc8edffa05c722c7b8c3e6f72e964.zip |
Wooooohooo time limits and correcter printing
Diffstat (limited to 'src/scalevalapokalypsi/Client/Turn.scala')
-rw-r--r-- | src/scalevalapokalypsi/Client/Turn.scala | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/scalevalapokalypsi/Client/Turn.scala b/src/scalevalapokalypsi/Client/Turn.scala index 30101c5..02fe11b 100644 --- a/src/scalevalapokalypsi/Client/Turn.scala +++ b/src/scalevalapokalypsi/Client/Turn.scala @@ -4,7 +4,7 @@ package scalevalapokalypsi.Client * This class exists essentially so that the client has somewhere * to store data about turns and something to format that data with. */ -class Turn: +class RoomState: /** Description of the area the player controlled by the client is in * at the end of the turn. */ @@ -29,4 +29,4 @@ class Turn: (s"$areaDescription\n$directionDesc\n" + s"\n$itemDesc\n$entityDesc") -end Turn +end RoomState |