summaryrefslogtreecommitdiffstats
path: root/src/Level.hs
blob: c99a4b54be34d8ac2b35fdc5ab1de12c20f863ea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
module Level ( Level(..)
             , testLevel
             ) where

import Data.List

data Level = Level
    { levelWidth  :: !Int
    , levelHeight :: !Int
    } deriving (Show)



testLevel :: Level
testLevel = Level
            { levelWidth = 10
            , levelHeight = 10
            }