summaryrefslogtreecommitdiff
blob: c62b0c7e450204d1ce76b317334195c533b7e89a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
module Struct.Armor exposing
   (
      Type,
      Ref,
      new,
      get_id
   )

-- Battlemap -------------------------------------------------------------------
import Struct.Attributes

--------------------------------------------------------------------------------
-- TYPES -----------------------------------------------------------------------
--------------------------------------------------------------------------------
type alias Type =
   {
      id : Int
   }

type alias Ref = Int

--------------------------------------------------------------------------------
-- LOCAL -----------------------------------------------------------------------
--------------------------------------------------------------------------------

--------------------------------------------------------------------------------
-- EXPORTED --------------------------------------------------------------------
--------------------------------------------------------------------------------
new : Int -> Type
new id =
   {
      id = id
   }

get_id : Type -> Ref
get_id ar = ar.id