18 lines
No EOL
358 B
Haskell
18 lines
No EOL
358 B
Haskell
module Level ( Level(..)
|
|
, testLevel
|
|
) where
|
|
|
|
import Data.List
|
|
|
|
data Level = Level
|
|
{ floorTiles :: ![[Int]]
|
|
, objectTiles :: ![[Int]]
|
|
} deriving (Show)
|
|
|
|
|
|
|
|
testLevel :: Level
|
|
testLevel = Level
|
|
{ floorTiles = replicate 10 $ replicate 10 0
|
|
, objectTiles = replicate 10 $ replicate 10 0
|
|
} |