13 lines
262 B
Java
13 lines
262 B
Java
|
/**
|
||
|
* Created by Alexis on 02-May-17.
|
||
|
*/
|
||
|
public class Thief {
|
||
|
protected static void steal() {
|
||
|
System.out.println("Steal valuable items");
|
||
|
}
|
||
|
|
||
|
protected static void doNothing() {
|
||
|
System.out.println("Pretend nothing happened and just leave");
|
||
|
}
|
||
|
}
|