Advertisement
Guest User

Achievement

a guest
Apr 23rd, 2017
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.66 KB | None | 0 0
  1. package content.achievements
  2.  
  3. /**
  4.  * Created by @Ruben.
  5.  */
  6.  
  7. public class Achievement {
  8.  
  9.     String achievementName
  10.     AchievementDifficulty difficulty
  11.     AchievementStatus status
  12.  
  13.     public Achievement(String achievementName, AchievementDifficulty difficulty, AchievementStatus status) {
  14.         this.achievementName = achievementName
  15.         this.difficulty = difficulty
  16.         this.status = status
  17.     }
  18.  
  19.     public String getAchievementName() {
  20.         return achievementName
  21.     }
  22.  
  23.     public AchievementDifficulty getDifficulty() {
  24.         return difficulty
  25.     }
  26.  
  27.     public AchievementStatus getStatus() {
  28.         return status
  29.     }
  30. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement