-
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 #45 from TeodorHMX1/annotation
Annotation
- Loading branch information
Showing
14 changed files
with
212 additions
and
84 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,18 @@ | ||
/** | ||
* Program: Assignment 2: Application – Baby Ball Bounce | ||
* Filename: TeamMembers.java | ||
* | ||
* @author: © Teodor Grigor (GitHub - TeodorHMX1) | ||
* Course: BSc Computing Year 1 | ||
* Module: CSY1020 Problem Solving & Programming | ||
* Tutor: Gary Hill | ||
* @version: 1.0 File created | ||
* Date: 26/05/20 | ||
*/ | ||
package app.enumerations; | ||
|
||
public enum TeamMembers { | ||
public enum TeamMembers | ||
{ | ||
players_2, | ||
players_4 | ||
} |
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
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,5 +1,17 @@ | ||
/** | ||
* Program: Assignment 2: Application – Baby Ball Bounce | ||
* Filename: GameSpeed.java | ||
* | ||
* @author: © Teodor Grigor (GitHub - TeodorHMX1) | ||
* Course: BSc Computing Year 1 | ||
* Module: CSY1020 Problem Solving & Programming | ||
* Tutor: Gary Hill | ||
* @version: 1.0 File created | ||
* Date: 23/06/20 | ||
*/ | ||
package app.interfaces; | ||
|
||
public interface GameSpeed { | ||
public interface GameSpeed | ||
{ | ||
void onSpeedChanged(); | ||
} |
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,7 +1,19 @@ | ||
/** | ||
* Program: Assignment 2: Application – Baby Ball Bounce | ||
* Filename: TeamMembersNumber.java | ||
* | ||
* @author: © Teodor Grigor (GitHub - TeodorHMX1) | ||
* Course: BSc Computing Year 1 | ||
* Module: CSY1020 Problem Solving & Programming | ||
* Tutor: Gary Hill | ||
* @version: 1.0 File created | ||
* Date: 12/06/20 | ||
*/ | ||
package app.interfaces; | ||
|
||
import app.enumerations.TeamMembers; | ||
|
||
public interface TeamMembersNumber { | ||
public interface TeamMembersNumber | ||
{ | ||
void onMembersChanged(TeamMembers players); | ||
} |
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
Oops, something went wrong.