-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #58 from danieskj/dev
MVP Finished
- Loading branch information
Showing
94 changed files
with
4,525 additions
and
483 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,31 @@ | ||
| package edu.ntnu.idi.idatt; | ||
|
|
||
| import edu.ntnu.idi.idatt.view.SceneFactory; | ||
| import edu.ntnu.idi.idatt.view.SceneManager; | ||
| import javafx.application.Application; | ||
| import javafx.stage.Stage; | ||
|
|
||
| public final class Launcher { | ||
|
|
||
| /** | ||
| * Entry point of application. | ||
| */ | ||
| static void main() { | ||
| Application.launch(StockGame.class); | ||
| } | ||
|
|
||
| public static final class StockGame extends Application { | ||
|
|
||
| @Override | ||
| public void start(Stage stage) { | ||
| stage.setWidth(1200); | ||
| stage.setHeight(700); | ||
| stage.setTitle("Stock Game"); | ||
|
|
||
| SceneManager.init(stage, SceneFactory.createStartView()); | ||
| stage.show(); | ||
| } | ||
|
|
||
| } | ||
|
|
||
| } |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.