Merge pull request #820 from nolt/feature-bots

(cherry picked from commit b10de0645a869485fbb5771a739abd06b5708c2d)
This commit is contained in:
sven-n
2026-07-16 22:01:57 +02:00
committed by Acentech Dev
parent 8baf329654
commit d04cbecae3
58 changed files with 14856 additions and 62 deletions

View File

@@ -0,0 +1,13 @@
// <copyright file="PendingPartyInvite.cs" company="MUnique">
// Licensed under the MIT License. See LICENSE file in the project root for full license information.
// </copyright>
namespace MUnique.OpenMU.GameLogic.Bots;
/// <summary>
/// A party invitation from a player which a bot accepted, waiting for the human-like delay to pass
/// before the party is actually formed (see <see cref="BotPartyHandler"/>).
/// </summary>
/// <param name="Requester">The player who invited the bot.</param>
/// <param name="AcceptAtUtc">When the bot answers the invitation.</param>
internal sealed record PendingPartyInvite(Player Requester, DateTime AcceptAtUtc);