Advertisement
Guest User

Untitled

a guest
Dec 25th, 2013
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.49 KB | None | 0 0
  1. package backend;
  2.  
  3. public class ScriptInfo {
  4.     private int xp;
  5.     private int xpph;
  6.     private String script;
  7.     private String acc;
  8.  
  9.     public ScriptInfo(String script, String acc, int xp, int xpph) {
  10.         this.xp = xp;
  11.         this.script = script;
  12.         this.xpph = xpph;
  13.         this.acc = acc;
  14.     }
  15.  
  16.     public String getScript() {
  17.         return this.script;
  18.     }
  19.  
  20.     public String getAcc() {
  21.         return this.acc;
  22.     }
  23.  
  24.     public int getXp() {
  25.         return this.xp;
  26.     }
  27.  
  28.     public int getXpPh() {
  29.         return this.xpph;
  30.     }
  31.  
  32. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement