using Impostor.Api.Innersloth;
namespace Impostor.Api.Events.Player
{
public interface IPlayerVentEvent : IPlayerEvent
{
///
/// Gets get the id of the used vent.
///
public VentLocation VentId { get; }
///
/// Gets a value indicating whether the vent was entered or exited.
///
public bool VentEnter { get; }
}
}