Advertisement
therrontelford

Untitled

Sep 12th, 2017
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.29 KB | None | 0 0
  1.  
  2. public class Hogs {
  3.    
  4.     int hogScore=0;
  5.    
  6.     public void speak1() {
  7.         System.out.println("We will destroy you tonight!");
  8.     }
  9.    
  10.     public void speak2() {
  11.         System.out.println("Prepare to die!!");
  12.     }
  13.     public int TD() {
  14.         return hogScore+=7;
  15.     }
  16.     public int FG() {
  17.         return hogScore+=3;
  18.     }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement