Guest User

Untitled

a guest
Feb 21st, 2018
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.21 KB | None | 0 0
  1. // weapon class
  2.  
  3. package javaapplication4;
  4.  
  5. public class Weapon {
  6.     public String name;
  7.     public int bonus;
  8.         public Weapon(String name, int bonus) {
  9.         this.name = name;
  10.         this.bonus = bonus;
  11.     }
  12.     }
  13. }
Add Comment
Please, Sign In to add comment