server-master/srcs/WingsAPI.Game/Groups/IGroupFactory.cs
2026-02-10 18:21:30 +01:00

12 lines
No EOL
419 B
C#

using System.Collections.Generic;
using WingsEmu.Game.Characters;
using WingsEmu.Packets.Enums;
namespace WingsEmu.Game.Groups;
public interface IGroupFactory
{
PlayerGroup CreateGroup(byte slots, long ownerId);
PlayerGroup CreateGroup(byte slots, List<IPlayerEntity> characters, long ownerId);
PlayerGroup CreateGroup(byte slots, List<IPlayerEntity> characters, long ownerId, GroupSharingType type);
}