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/src/Level.hs
2010-03-15 14:46:14 +01:00

22 lines
373 B
Haskell

module Level ( Level(..)
, testLevel
) where
import Data.List
import Debris
data Level = Level
{ levelWidth :: !Int
, levelHeight :: !Int
, debris :: ![SomeDebris]
} deriving (Show)
testLevel :: Level
testLevel = Level
{ levelWidth = 14
, levelHeight = 8
, debris = []
}