summaryrefslogtreecommitdiffstats
path: root/src/Game.hs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Game.hs')
-rw-r--r--src/Game.hs3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/Game.hs b/src/Game.hs
index 623e3ad..21fe6cd 100644
--- a/src/Game.hs
+++ b/src/Game.hs
@@ -8,12 +8,10 @@ module Game ( Bullet(..)
import Level
import Tank
-import Texture
import Control.Monad
import Control.Monad.State
import Data.Fixed
-import qualified Data.Map as M
data Bullet = Bullet
@@ -29,7 +27,6 @@ data GameState = GameState
{ level :: !Level
, tanks :: ![Tank]
, bullets :: ![Bullet]
- , textures :: !(M.Map Texture TextureObject)
} deriving (Show)
newtype Game a = Game (StateT GameState IO a)