Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using Ion.Net.Messages;
- using Ion.HabboHotel.Client;
- namespace Ion.HabboHotel.Achievements
- {
- public class Achievement
- {
- public uint Id;
- public int Levels;
- public string BadgeCode;
- public int PixelBase;
- public double PixelMultiplier;
- public string Type;
- public bool DynamicBadgeLevel;
- public bool EnableCounter;
- public Achievement(uint mId, int mLevels, string mBadgeCode, int mPixelBase, double mPixelMultiplier, string mType, bool mDynamicBadgeLevel, bool mEnableCounter)
- {
- this.Id = mId;
- this.Levels = mLevels;
- this.BadgeCode = mBadgeCode;
- this.PixelBase = mPixelBase;
- this.PixelMultiplier = mPixelMultiplier;
- this.Type = mType;
- this.DynamicBadgeLevel = mDynamicBadgeLevel;
- this.EnableCounter = mEnableCounter;
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement