Remove mtl dependency

This commit is contained in:
2026-01-23 09:59:18 +00:00
parent a464d4dc38
commit 962df63e62
18 changed files with 36 additions and 20 deletions
+2 -1
View File
@@ -10,7 +10,8 @@ module Dodge.Data.GenWorld (
import ShortShow
import Control.Lens
import Control.Monad.State
--import Control.Monad.State
import Control.Monad.Trans.State.Lazy
import qualified Data.Set as S
import Data.Tile
import Dodge.Data.Room
+2 -1
View File
@@ -6,7 +6,8 @@ module Dodge.Data.MetaTree where
import Control.Lens
import Data.Tree
import System.Random
import Control.Monad.State
--import Control.Monad.State
import Control.Monad.Trans.State.Lazy
data MetaTree a b = MTree
{_mtLabel :: b, _mtTree :: MetaNode a b, _mtBranches :: [MetaBranch a b]}