summaryrefslogtreecommitdiff |
diff options
author | nsensfel <SpamShield0@noot-noot.org> | 2019-02-11 16:44:57 +0100 |
---|---|---|
committer | nsensfel <SpamShield0@noot-noot.org> | 2019-02-11 16:44:57 +0100 |
commit | 7b7c639047ea3ad4c755f745cb89f9ef7e04b755 (patch) | |
tree | e3d241c8ae344030f1986554838c215f58780ee0 /src/battle/src/Struct/ServerReply.elm | |
parent | 582266b5179833a2f58f215831523556cf8b855b (diff) |
Keeps track of who the players are.
Diffstat (limited to 'src/battle/src/Struct/ServerReply.elm')
-rw-r--r-- | src/battle/src/Struct/ServerReply.elm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/battle/src/Struct/ServerReply.elm b/src/battle/src/Struct/ServerReply.elm index 59531aa..b26a579 100644 --- a/src/battle/src/Struct/ServerReply.elm +++ b/src/battle/src/Struct/ServerReply.elm @@ -5,6 +5,7 @@ module Struct.ServerReply exposing (Type(..)) -- Battle ---------------------------------------------------------------------- import Struct.Armor import Struct.Portrait +import Struct.Player import Struct.Map import Struct.Character import Struct.Tile @@ -20,6 +21,7 @@ type Type = | Disconnected | AddArmor Struct.Armor.Type | AddPortrait Struct.Portrait.Type + | AddPlayer Struct.Player.Type | AddWeapon Struct.Weapon.Type | AddCharacter Struct.Character.TypeAndEquipmentRef | AddTile Struct.Tile.Type |