14 lines
No EOL
295 B
C#
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; }
|
|
} |