mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-05-20 08:26:59 -04:00
Added all the base code for managing world-scope groups.
This commit is contained in:
19
FFXIVClassic World Server/DataObjects/Group/RetainerGroup.cs
Normal file
19
FFXIVClassic World Server/DataObjects/Group/RetainerGroup.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace FFXIVClassic_World_Server.DataObjects.Group
|
||||
{
|
||||
class RetainerGroup : Group
|
||||
{
|
||||
public uint owner;
|
||||
public Dictionary<uint, RetainerGroupMember> members = new Dictionary<uint, RetainerGroupMember>();
|
||||
|
||||
public RetainerGroup(ulong groupId, uint owner) : base(groupId)
|
||||
{
|
||||
this.owner = owner;
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user