Added 3D models
This commit is contained in:
parent
4ecea2f9dc
commit
a4f2d991da
7 changed files with 2062 additions and 18 deletions
|
@ -9,6 +9,7 @@ import Game
|
|||
import GLDriver
|
||||
import Player
|
||||
import Texture
|
||||
import Model
|
||||
|
||||
import Control.Monad.State
|
||||
import Control.Monad.Trans
|
||||
|
@ -22,6 +23,7 @@ data MainState = MainState
|
|||
, time :: !UTCTime
|
||||
, players :: ![SomePlayer]
|
||||
, textures :: !(M.Map Texture TextureObject)
|
||||
, models :: !(M.Map Model InterleavedObj)
|
||||
, gameState :: !GameState
|
||||
}
|
||||
|
||||
|
|
Reference in a new issue