Interface | Description |
---|---|
Dice |
Dice intrface
It's giving some method signatures to implement to class which has implemented from Dice interface
int -roleDice()
int -updateScore(String,int)
void -startGame();
|
Class | Description |
---|---|
GameStarter |
GameStarter clas has a start point to begin game
|
Player |
Player class Implemented from Dice interface
and implemented methods are
int -roleDice()
int -updateScore(String,int)
void -startGame();
|