Advertisement
RaWRCoder

DropGroup

Aug 2nd, 2014
269
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.62 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3.  
  4. namespace AionSmartDrop.AionGame
  5. {
  6.     public class DropGroup
  7.     {
  8.         public List<Drop> Items { get; protected set; }
  9.         public Race Race { get; protected set; }
  10.         public bool UseCategory { get; protected set; }
  11.         public string GroupName { get; protected set; }
  12.  
  13.         public DropGroup(List<Drop> drop, Race race, bool useCategory, String groupname)
  14.         {
  15.             Items = drop ?? new List<Drop>();
  16.             Race = race;
  17.             UseCategory = useCategory;
  18.             GroupName = groupname ?? "<undefined>";
  19.         }
  20.     }
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement