mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-04-02 19:42:05 -04:00
18 lines
437 B
C#
18 lines
437 B
C#
using FFXIVClassic_Map_Server.actors.director;
|
|
|
|
namespace FFXIVClassic_Map_Server.actors.group
|
|
{
|
|
class GLContentGroup : ContentGroup
|
|
{
|
|
public GLContentGroup(ulong groupIndex, Director director, uint[] initialMembers)
|
|
: base(groupIndex, director, initialMembers)
|
|
{
|
|
}
|
|
|
|
public override uint GetTypeId()
|
|
{
|
|
return Group.ContentGroup_GuildleveGroup;
|
|
}
|
|
}
|
|
}
|