forked from Haonan-Hu/Battleship-1
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathOverScene.java
More file actions
31 lines (28 loc) · 781 Bytes
/
OverScene.java
File metadata and controls
31 lines (28 loc) · 781 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/**
Battleship!
KU EECS 448 project 2
TeamName: BigSegFaultEnergy
* \Author: Chance Penner
* \Author: Markus Becerra
* \Author: Sarah Scott
* \Author: Thomas Gardner
* \Author: Haonan Hu
* \File: OverScene.java
* \Date: 10/14/2019
* \Brief: This interface will be used by classes that are each a specific scene or pane of the app
KU EECS 448 project 1
TeamName: Poor Yorick
* \Author: Max Goad
* \Author: Jace Bayless
* \Author: Tri Pham
* \Author: Apurva Rai
* \Author: Meet Kapadia
* \File: Override.java
* \Brief: This interface will be used by classes that are each a specific scene or pane of the app
*/
//Here is the erternal class that needs to be imported
import javafx.scene.Scene;
public interface OverScene
{
Scene getScene();
}