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
2010-02-25 02:15:26 +01:00

18 lines
No EOL
297 B
Haskell

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
}