-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGod.java
37 lines (28 loc) · 869 Bytes
/
God.java
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
32
33
34
35
36
37
package MafiaGame;
public class God {
private Role role;
public God(Role role) {
this.role = role;
}
public Role getRole() {
return role;
}
public void sendSleepCommand() {
System.out.println("Every body should sleep!");
}
public void sendAwakeCommandToMafias() {
System.out.println("Every mafia! wake up!");
}
public void sendPersonSelectionCommandToMafias() {
System.out.println("Select a citizen to kill!");
}
public void sendSleepCommandToMafia() {
System.out.println("Every body who is mafia should sleep right now!");
}
public void sendWakeUpCommandTODoctor() {
System.out.println("Doctor! wake up");
}
public void sendConsiderationCommandToDoctor() {
System.out.println("Doctor! Select one person and do your job!");
}
}