server-master/srcs/WingsAPI.Game/Miniland/Events/MinigameRewardEvent.cs
2026-02-10 18:21:30 +01:00

20 lines
No EOL
502 B
C#

using WingsEmu.Game._packetHandling;
using WingsEmu.Game.Configurations.Miniland;
namespace WingsEmu.Game.Miniland.Events;
public class MinigameRewardEvent : PlayerEvent
{
public MinigameRewardEvent(RewardLevel rewardLevel, MapDesignObject mapObject, bool coupon)
{
RewardLevel = rewardLevel;
MapObject = mapObject;
Coupon = coupon;
}
public RewardLevel RewardLevel { get; }
public MapDesignObject MapObject { get; }
public bool Coupon { get; }
}