Made every appropriate Text and Logic class

This commit is contained in:
2019-04-07 14:58:48 -06:00
parent e2ad32c4ee
commit f37aa91fad
18 changed files with 278 additions and 205 deletions

4
src/logic/BankLogic.java Normal file
View File

@@ -0,0 +1,4 @@
package logic;
public class BankLogic extends Player {
}

View File

@@ -3,7 +3,7 @@ package logic;
import java.io.*;
/**
* 2019-03-10 (Edited on 2019-03-19)
* Authors:
* Authors: Harkamal Randhawa
* FileSaving Class allows the user to save the current status of the game and to continue from where they left off.
*/

View File

@@ -0,0 +1,4 @@
package logic;
public class GameEndLogic extends Player{
}

4
src/logic/MainLogic.java Normal file
View File

@@ -0,0 +1,4 @@
package logic;
public class MainLogic extends Player{
}

View File

@@ -0,0 +1,4 @@
package logic;
public class RandomEventLogic extends Player{
}

View File

@@ -0,0 +1,4 @@
package logic;
public class StartLogic extends Player {
}

View File

@@ -0,0 +1,4 @@
package logic;
public class TravelLogic extends Player {
}

View File

@@ -0,0 +1,4 @@
package logic;
public class WarehouseLogic extends Player {
}