//
// Licensed under the MIT License. See LICENSE file in the project root for full license information.
//
namespace MUnique.OpenMU.GameLogic;
///
/// The part of a money drop which is reserved for a single player.
///
/// The player for which the part is reserved.
/// The amount of money, before the of the player is applied.
public readonly record struct MoneyShare(Player Player, uint Amount);