Advertisement
TorroesPrime

Untitled

Nov 18th, 2021
1,127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.30 KB | None | 0 0
  1.    public hero(String[] hero) {
  2.         this.charisma = Integer.parseInt(hero[2]);
  3.         this.perception = Integer.parseInt(hero[3]);
  4.         this.strength = Integer.parseInt(hero[4]);
  5.         this.dexterity = Integer.parseInt(hero[5]);
  6.         this.name = hero[0];
  7.         this.bio = hero[1];
  8.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement