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

14 lines
No EOL
295 B
C#

// WingsEmu
//
// Developed by NosWings Team
using WingsEmu.Game._packetHandling;
namespace WingsEmu.Game.Miniland.Minigames;
public class MinigameRefreshProductionEvent : PlayerEvent
{
public MinigameRefreshProductionEvent(bool force) => Force = force;
public bool Force { get; }
}