Moved source files to src directory

This commit is contained in:
Matthias Schiffer 2010-03-09 03:49:15 +01:00
parent 2bb8561836
commit 7327695ca3
14 changed files with 3 additions and 6 deletions

18
src/Level.hs Normal file
View 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
}