-
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.
- Loading branch information
Showing
33 changed files
with
107 additions
and
105 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
rootProject.name = "YingYe" | ||
rootProject.name = "BusinessSimulator" |
10 changes: 5 additions & 5 deletions
10
...angaoa/YingYe/App/YingYeAnnouncement.java → ...usinessSimulator/App/BSSAnnouncement.java
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
10 changes: 5 additions & 5 deletions
10
...a/com/niangaoa/YingYe/App/YingYeMenu.java → ...angaoa/BusinessSimulator/App/BSSMenu.java
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,13 @@ | ||
package com.niangaoa.BusinessSimulator; | ||
|
||
import com.niangaoa.BusinessSimulator.App.BSSAnnouncement; | ||
import javafx.application.Application; | ||
import javafx.stage.Stage; | ||
|
||
public class BSSMain extends Application { | ||
@Override | ||
public void start(Stage mainStage) throws Exception { | ||
mainStage.hide(); | ||
new BSSAnnouncement().start(new Stage()); | ||
} | ||
} |
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
4 changes: 4 additions & 0 deletions
4
src/main/java/com/niangaoa/BusinessSimulator/Ctrller/BSSMapCtrl.java
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,4 @@ | ||
package com.niangaoa.BusinessSimulator.Ctrller; | ||
|
||
public class BSSMapCtrl { | ||
} |
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
8 changes: 4 additions & 4 deletions
8
...oa/YingYe/Ctrller/YingYeTutorialCtrl.java → ...essSimulator/Ctrller/BSSTutorialCtrl.java
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 |
---|---|---|
@@ -1,18 +1,18 @@ | ||
package com.niangaoa.YingYe.Ctrller; | ||
package com.niangaoa.BusinessSimulator.Ctrller; | ||
|
||
import com.niangaoa.YingYe.App.YingYeMenu; | ||
import com.niangaoa.BusinessSimulator.App.BSSMenu; | ||
import javafx.fxml.FXML; | ||
import javafx.scene.control.Button; | ||
import javafx.stage.Stage; | ||
|
||
public class YingYeTutorialCtrl { | ||
public class BSSTutorialCtrl { | ||
@FXML | ||
private Button back; | ||
|
||
@FXML | ||
private void onBack() throws Exception { | ||
Stage stage = (Stage) back.getScene().getWindow(); | ||
stage.close(); | ||
new YingYeMenu().start(new Stage()); | ||
new BSSMenu().start(new Stage()); | ||
} | ||
} |
2 changes: 1 addition & 1 deletion
2
...m/niangaoa/YingYe/GameContro/BuySell.java → ...BusinessSimulator/GameContro/BuySell.java
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
11 changes: 11 additions & 0 deletions
11
src/main/java/com/niangaoa/BusinessSimulator/GameContro/DataSave.java
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,11 @@ | ||
package com.niangaoa.BusinessSimulator.GameContro; | ||
|
||
import com.niangaoa.BusinessSimulator.Ctrller.BSSGameCtrl; | ||
|
||
public class DataSave { | ||
public static void main(String[] args) { | ||
BSSGameCtrl BSSGameCtrl = new BSSGameCtrl(); | ||
BSSGameCtrl.addTextToArray(); | ||
System.out.println(BSSGameCtrl.gameData.gameDataList.get(0)); | ||
} | ||
} |
Oops, something went wrong.