Advertisement
Guest User

Achievement.cs

a guest
Jul 5th, 2011
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.02 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5.  
  6. using Ion.Net.Messages;
  7. using Ion.HabboHotel.Client;
  8.  
  9. namespace Ion.HabboHotel.Achievements
  10. {
  11.     public class Achievement
  12.     {
  13.         public uint Id;
  14.         public int Levels;
  15.         public string BadgeCode;
  16.         public int PixelBase;
  17.         public double PixelMultiplier;
  18.         public string Type;
  19.         public bool DynamicBadgeLevel;
  20.         public bool EnableCounter;
  21.  
  22.         public Achievement(uint mId, int mLevels, string mBadgeCode, int mPixelBase, double mPixelMultiplier, string mType, bool mDynamicBadgeLevel, bool mEnableCounter)
  23.         {
  24.             this.Id = mId;
  25.             this.Levels = mLevels;
  26.             this.BadgeCode = mBadgeCode;
  27.             this.PixelBase = mPixelBase;
  28.             this.PixelMultiplier = mPixelMultiplier;
  29.             this.Type = mType;
  30.             this.DynamicBadgeLevel = mDynamicBadgeLevel;
  31.             this.EnableCounter = mEnableCounter;
  32.         }
  33.  
  34.     }
  35. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement