13 lines
262 B
Java
Raw Normal View History

2017-05-03 17:50:35 +02:00
/**
* 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");
}
}