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

18 lines
297 B
Haskell
Raw Normal View History

2010-02-22 16:50:42 +01:00
module Level ( Level(..)
, testLevel
) where
import Data.List
data Level = Level
2010-02-25 02:15:26 +01:00
{ levelWidth :: !Int
, levelHeight :: !Int
2010-02-22 16:50:42 +01:00
} deriving (Show)
testLevel :: Level
testLevel = Level
2010-02-25 02:15:26 +01:00
{ levelWidth = 10
, levelHeight = 10
2010-02-22 16:50:42 +01:00
}