removed unnecessary language extension

This commit is contained in:
tpajenka 2014-04-26 19:58:20 +02:00
parent 2d80c92384
commit d5eb4f93a3
3 changed files with 4 additions and 5 deletions

View File

@ -36,6 +36,8 @@ executable Pioneers
array >=0.4,
random >=1.0.1,
transformers >=0.3.0,
unordered-containers >= 0.2.1,
hashable >= 1.0.1.1,
mtl >=2.1.2,
stm >=2.4.2,
vector >=0.10.9 && <0.11,
@ -45,9 +47,7 @@ executable Pioneers
SDL2 >= 0.1.0,
time >=1.4.0,
GLUtil >= 0.7,
attoparsec >= 0.11.2,
unordered-containers >= 0.2.1,
hashable >= 1.0.1.1
attoparsec >= 0.11.2
other-modules: Render.Types
Default-Language: Haskell2010

View File

@ -1,5 +1,3 @@
{-# LANGUAGE ExistentialQuantification #-}
module UI.Callbacks where

View File

@ -1,4 +1,5 @@
{-# LANGUAGE GeneralizedNewtypeDeriving #-}
-- data and classes are separated into several modules to avoid cyclic dependencies with the Type module
module UI.UIBaseData where