11 lines
169 B
Java
Raw Normal View History

2017-04-29 16:35:57 +02:00
/**
* Created by Alexis on 29-Apr-17.
*/
public class Guard implements Permission {
protected static void enter() {
System.out.println("You can enter");
}
}