summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'client/elm/battlemap/src/Character.elm')
-rw-r--r--client/elm/battlemap/src/Character.elm20
1 files changed, 0 insertions, 20 deletions
diff --git a/client/elm/battlemap/src/Character.elm b/client/elm/battlemap/src/Character.elm
deleted file mode 100644
index 41cfc84..0000000
--- a/client/elm/battlemap/src/Character.elm
+++ /dev/null
@@ -1,20 +0,0 @@
-module Character exposing (Type, Ref, get_ref)
-
-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