This repository has been archived on 2025-03-03. You can view files and clone it, but cannot push or open issues or pull requests.
htanks/Level.hs
Matthias Schiffer 62fe58cb55 Initial commit
2010-02-22 16:50:42 +01:00

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
}