Table of Contents

Interface IPartyCharacterMappingData

Namespace
FishMMO.Server.Core.World.SceneServer
Assembly
FishMMO.Server.dll

Runtime data container for party member and character tracking. Provides read-only access to party membership lookups.

public interface IPartyCharacterMappingData : IRuntimeDataContainer, IServerComponent

Properties

PartyCharacterTracker

Tracks currently online party members on this scene server. Key: Party ID, Value: Set of Character IDs.

Dictionary<long, HashSet<long>> PartyCharacterTracker { get; }

Property Value

Dictionary<long, HashSet<long>>

PartyMemberTracker

Tracks all party members for parties with at least one member logged into this server. Key: Party ID, Value: Set of Character IDs.

Dictionary<long, HashSet<long>> PartyMemberTracker { get; }

Property Value

Dictionary<long, HashSet<long>>