Skip to content

Commit

Permalink
refactor(package): change setup name into 'game'
Browse files Browse the repository at this point in the history
  • Loading branch information
luigi-borriello00 committed Sep 6, 2023
1 parent b35ec31 commit d8ff20a
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions src/main/scala/scatan/Main.scala
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package scatan
import com.raquo.laminar.api.L.{*, given}
import scatan.controllers.home.{HomeController, HomeControllerImpl}
import scatan.controllers.setup.{SetUpController, SetUpControllerImpl}
import scatan.views.setup.{SetUpView, ScalaJsSetUpView}
import scatan.controllers.game.{SetUpController, SetUpControllerImpl}
import scatan.views.game.{SetUpView, ScalaJsSetUpView}
import scatan.views.home.{HomeView, ScalaJsHomeView}
import scatan.model.ApplicationState
import scatan.views.home.{AboutView, ScalaJSAboutView}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package scatan.controllers.setup
package scatan.controllers.game

import scatan.mvc.lib.Controller
import scatan.views.setup.SetUpView
import scatan.views.game.SetUpView
import scatan.mvc.lib.NavigableApplicationManager
import scatan.Pages

Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
package scatan.views.setup
package scatan.views.game

import scatan.controllers.setup.SetUpController
import scatan.controllers.game.SetUpController

import scatan.Pages
import scatan.mvc.lib.View
import scatan.controllers.setup.SetUpController
import scatan.controllers.game.SetUpController
import com.raquo.laminar.api.L.*
import scatan.mvc.lib.{ScalaJSView, View}
import scatan.Pages
Expand Down

0 comments on commit d8ff20a

Please sign in to comment.