10 lines
No EOL
250 B
C#
10 lines
No EOL
250 B
C#
using WingsEmu.Game._packetHandling;
|
|
|
|
namespace WingsEmu.Game.Characters.Events;
|
|
|
|
public class RemoveVehicleEvent : PlayerEvent
|
|
{
|
|
public RemoveVehicleEvent(bool showMates = false) => ShowMates = showMates;
|
|
|
|
public bool ShowMates { get; }
|
|
} |