2016-12-12 19:03:25 -05:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace FFXIVClassic_World_Server.DataObjects.Group
|
|
|
|
|
{
|
|
|
|
|
class RetainerGroupMember
|
|
|
|
|
{
|
2016-12-18 09:50:23 -05:00
|
|
|
|
public uint id;
|
2016-12-15 12:19:44 -05:00
|
|
|
|
public string name;
|
2016-12-18 09:50:23 -05:00
|
|
|
|
public uint classActorId;
|
|
|
|
|
public byte cdIDOffset;
|
|
|
|
|
public ushort placeName;
|
|
|
|
|
public byte conditions;
|
|
|
|
|
public byte level;
|
|
|
|
|
|
|
|
|
|
public RetainerGroupMember(uint id, string name, uint classActorId, byte cdIDOffset, ushort placeName, byte conditions, byte level)
|
|
|
|
|
{
|
|
|
|
|
this.id = id;
|
|
|
|
|
this.name = name;
|
|
|
|
|
this.classActorId = classActorId;
|
|
|
|
|
this.cdIDOffset = cdIDOffset;
|
|
|
|
|
this.placeName = placeName;
|
|
|
|
|
this.conditions = conditions;
|
|
|
|
|
this.level = level;
|
|
|
|
|
}
|
2016-12-12 19:03:25 -05:00
|
|
|
|
}
|
|
|
|
|
}
|