Moved source files to src directory
This commit is contained in:
parent
2bb8561836
commit
7327695ca3
14 changed files with 3 additions and 6 deletions
18
src/Level.hs
Normal file
18
src/Level.hs
Normal file
|
@ -0,0 +1,18 @@
|
|||
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
|
||||
}
|
Reference in a new issue