Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- class Player {
- protected String username = "username 1";
- public void play() {
- System.out.println("username 1 is playing a game");
- }
- }
- class Person {
- private String name = "person 1";
- public void play() {
- System.out.println("person 1 is also playing a game");
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement