From e008855086d124f0de14eacc858ecb57d23e371c Mon Sep 17 00:00:00 2001 From: nsensfel Date: Thu, 19 Oct 2017 13:30:40 +0200 Subject: Starting a more modular approach for the website. --- elm/battlemap/src/Character.elm | 44 ----------------------------------------- 1 file changed, 44 deletions(-) delete mode 100644 elm/battlemap/src/Character.elm (limited to 'elm/battlemap/src/Character.elm') diff --git a/elm/battlemap/src/Character.elm b/elm/battlemap/src/Character.elm deleted file mode 100644 index 1b4d1a1..0000000 --- a/elm/battlemap/src/Character.elm +++ /dev/null @@ -1,44 +0,0 @@ -module Character exposing - ( - Type, - Ref, - get_ref, - get_icon_id, - get_location, - set_location, - get_movement_points, - get_attack_range - ) - -import Battlemap.Location - -type alias Type = - { - id : String, - name : String, - icon : String, - portrait : String, - location : Battlemap.Location.Type, - movement_points : Int, - atk_dist : Int - } - -type alias Ref = String - -get_ref : Type -> Ref -get_ref c = c.id - -get_icon_id : Type -> String -get_icon_id c = c.icon - -get_location : Type -> Battlemap.Location.Type -get_location t = t.location - -set_location : Battlemap.Location.Type -> Type -> Type -set_location location char = {char | location = location} - -get_movement_points : Type -> Int -get_movement_points char = char.movement_points - -get_attack_range : Type -> Int -get_attack_range char = char.atk_dist -- cgit v1.2.3-70-g09d2