summaryrefslogtreecommitdiff
path: root/haskell/src/SpaceTraders/Model/Cargo.hs
blob: 126fc634b80c88290e6f3afb110e2afccb07845d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{-# LANGUAGE DeriveAnyClass #-}
{-# LANGUAGE DeriveGeneric #-}
{-# LANGUAGE OverloadedStrings #-}

module SpaceTraders.Model.Cargo
  ( Cargo(..)
  ) where

import Data.Aeson
import GHC.Generics

import SpaceTraders.Model.Inventory(Inventory)

data Cargo = Cargo { capacity :: Int
                   , inventory :: [Inventory]
                   , units :: Int
                   } deriving (FromJSON, Generic, Show, ToJSON)