├── .github ├── ISSUE_TEMPLATE │ ├── 1-bug-template.yml │ ├── 2-idea-template.yml │ └── 3-task-template.yml └── README.md ├── .gitignore ├── .gitlab ├── issue_templates │ ├── New Bug.md │ ├── New Idea.md │ ├── New Task - Docless.md │ └── New Task.md └── merge_request_templates │ ├── MR Template - Docless.md │ └── MR Template.md ├── EVENTGUIDELINES.md ├── LICENSE ├── LabApi.Examples ├── Commands │ ├── CommandsPlugin │ │ ├── Commands │ │ │ ├── Fun │ │ │ │ ├── EffectCommand.cs │ │ │ │ ├── FlashbangCommand.cs │ │ │ │ ├── FunParentCommand.cs │ │ │ │ └── GrenadeCommand.cs │ │ │ └── HelloCommand.cs │ │ ├── CommandsPlugin.cs │ │ ├── CommandsPlugin.csproj │ │ ├── Helpers.cs │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ └── CommandsPlugin2 │ │ ├── Commands │ │ ├── ClientDotCommands │ │ │ └── MeleeCommand.cs │ │ └── RemoteAdminCommands │ │ │ ├── ChangeDefaultGravityCommand.cs │ │ │ └── ChangeMaxHpCommand.cs │ │ ├── CommandsOverviewPlugin.cs │ │ ├── CommandsPlugin2.csproj │ │ ├── EventHandlers │ │ └── GravityEventHandler.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── HelloWorld │ ├── HelloWorldPlugin-Custom │ │ ├── HelloWorldPlugin-Custom.csproj │ │ ├── HelloWorldPlugin.cs │ │ ├── MyCustomEventsHandler.cs │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ └── HelloWorldPlugin-Legacy │ │ ├── HelloWorldPlugin-Legacy.csproj │ │ ├── HelloWorldPlugin.cs │ │ └── Properties │ │ └── AssemblyInfo.cs └── LogAll │ └── LogPlugin │ ├── LogPlugin.cs │ ├── LogPlugin.csproj │ ├── MyCustomEventsHandler.cs │ └── Properties │ └── AssemblyInfo.cs ├── LabApi.SourceGenerators ├── LabApi.SourceGenerators.Tests │ ├── EventSourceGeneratorTests.cs │ ├── InitializeWrapperSourceGeneratorTests.cs │ └── LabApi.SourceGenerators.Tests.csproj └── LabApi.SourceGenerators │ ├── AnalyzerReleases.Shipped.md │ ├── Core.cs │ ├── EventSourceGenerator.cs │ ├── InitializeWrapperSourceGenerator.cs │ ├── LabApi.SourceGenerators.csproj │ └── Properties │ └── launchSettings.json ├── LabApi.sln ├── LabApi ├── Events │ ├── Arguments │ │ ├── Interfaces │ │ │ ├── AdminToys │ │ │ │ ├── IAdminToyEvent.cs │ │ │ │ ├── IInteractableEvent.cs │ │ │ │ └── IShootingTargetEvent.cs │ │ │ ├── Doors │ │ │ │ ├── IDoorEvent.cs │ │ │ │ └── IGateEvent.cs │ │ │ ├── Hazards │ │ │ │ ├── IAmnesticCloudEvent.cs │ │ │ │ ├── IHazardEvent.cs │ │ │ │ └── ITantrumEvent.cs │ │ │ ├── ICameraEvent.cs │ │ │ ├── ICancellableEvent.cs │ │ │ ├── ICommandSenderEvent.cs │ │ │ ├── IElevatorEvent.cs │ │ │ ├── IGroupEvent.cs │ │ │ ├── IObjectiveEvent.cs │ │ │ ├── IPlayerEvent.cs │ │ │ ├── IRagdollEvent.cs │ │ │ ├── IRoomEvent.cs │ │ │ ├── IScp914Event.cs │ │ │ ├── ITargetEvent.cs │ │ │ ├── ITeslaEvent.cs │ │ │ ├── IVoiceMessageEvent.cs │ │ │ ├── Items │ │ │ │ ├── Firearms │ │ │ │ │ ├── IRevolverItemEvent.cs │ │ │ │ │ └── IScp127ItemEvent.cs │ │ │ │ ├── IBodyArmorItemEvent.cs │ │ │ │ ├── ICandyItemEvent.cs │ │ │ │ ├── ICoinItemEvent.cs │ │ │ │ ├── IFirearmItemEvent.cs │ │ │ │ ├── IItemEvent.cs │ │ │ │ ├── IJailbirdEvent.cs │ │ │ │ ├── IKeycardItemEvent.cs │ │ │ │ ├── ILightItemEvent.cs │ │ │ │ ├── IRadioItemEvent.cs │ │ │ │ ├── IThrowableItemEvent.cs │ │ │ │ └── IUsableItemEvent.cs │ │ │ ├── Pickups │ │ │ │ ├── IAmmoPickupEvent.cs │ │ │ │ ├── IBodyArmorPickupEvent.cs │ │ │ │ ├── ICandyPickupEvent.cs │ │ │ │ ├── IExplosionGrenadeEvent.cs │ │ │ │ ├── IPickupEvent.cs │ │ │ │ ├── IProjectileEvent.cs │ │ │ │ └── ITimedGrenadeEvent.cs │ │ │ └── Structures │ │ │ │ ├── IGeneratorEvent.cs │ │ │ │ ├── ILockerEvent.cs │ │ │ │ └── IStructureEvent.cs │ │ ├── ObjectiveEvents │ │ │ ├── EnemyKilledObjectiveEventArgs.cs │ │ │ ├── EnemyKillingObjectiveEventArgs.cs │ │ │ ├── EscapedObjectiveEventArgs.cs │ │ │ ├── EscapingObjectiveEventArgs.cs │ │ │ ├── GeneratorActivatedObjectiveEventArgs.cs │ │ │ ├── GeneratorActivatingObjectiveEventArgs.cs │ │ │ ├── ObjectiveCompletedBaseEventArgs.cs │ │ │ ├── ObjectiveCompletingBaseEventArgs.cs │ │ │ ├── ScpDamagedObjectiveEventArgs.cs │ │ │ ├── ScpDamagingObjectiveEventArgs.cs │ │ │ ├── ScpItemPickedObjectiveEventArgs.cs │ │ │ └── ScpItemPickingObjectiveEventArgs.cs │ │ ├── PlayerEvents │ │ │ ├── PlayerActivatedGeneratorEventArgs.cs │ │ │ ├── PlayerActivatingGeneratorEventArgs.cs │ │ │ ├── PlayerAimedWeaponEventArgs.cs │ │ │ ├── PlayerAimingWeaponEventArgs.cs │ │ │ ├── PlayerBannedEventArgs.cs │ │ │ ├── PlayerBanningEventArgs.cs │ │ │ ├── PlayerCancelledUsingItemEventArgs.cs │ │ │ ├── PlayerCancellingUsingItemEventArgs.cs │ │ │ ├── PlayerChangedAttachmentsEventArgs.cs │ │ │ ├── PlayerChangedBadgeVisibilityEventArgs.cs │ │ │ ├── PlayerChangedItemEventArgs.cs │ │ │ ├── PlayerChangedNicknameEventArgs.cs │ │ │ ├── PlayerChangedRadioRangeEventArgs.cs │ │ │ ├── PlayerChangedRoleEventArgs.cs │ │ │ ├── PlayerChangedSpectatorEventArgs.cs │ │ │ ├── PlayerChangingAttachmentsEventArgs.cs │ │ │ ├── PlayerChangingBadgeVisibilityEventArgs.cs │ │ │ ├── PlayerChangingItemEventArgs.cs │ │ │ ├── PlayerChangingNicknameEventArgs.cs │ │ │ ├── PlayerChangingRadioRangeEventArgs.cs │ │ │ ├── PlayerChangingRoleEventArgs.cs │ │ │ ├── PlayerCheckedHitmarkerEventArgs.cs │ │ │ ├── PlayerClosedGeneratorEventArgs.cs │ │ │ ├── PlayerClosingGeneratorEventArgs.cs │ │ │ ├── PlayerCuffedEventArgs.cs │ │ │ ├── PlayerCuffingEventArgs.cs │ │ │ ├── PlayerDamagedShootingTargetEventArgs.cs │ │ │ ├── PlayerDamagedWindowEventArgs.cs │ │ │ ├── PlayerDamagingShootingTargetEventArgs.cs │ │ │ ├── PlayerDamagingWindowEventArgs.cs │ │ │ ├── PlayerDeactivatedGeneratorEventArgs.cs │ │ │ ├── PlayerDeactivatingGeneratorEventArgs.cs │ │ │ ├── PlayerDeathEventArgs.cs │ │ │ ├── PlayerDetectedByScp1344EventArgs.cs │ │ │ ├── PlayerDroppedAmmoEventArgs.cs │ │ │ ├── PlayerDroppedItemEventArgs.cs │ │ │ ├── PlayerDroppingAmmoEventArgs.cs │ │ │ ├── PlayerDroppingItemEventArgs.cs │ │ │ ├── PlayerDryFiredWeaponEventArgs.cs │ │ │ ├── PlayerDryFiringWeaponEventArgs.cs │ │ │ ├── PlayerDyingEventArgs.cs │ │ │ ├── PlayerEffectUpdatedEventArgs.cs │ │ │ ├── PlayerEffectUpdatingEventArgs.cs │ │ │ ├── PlayerEnteredHazardEventArgs.cs │ │ │ ├── PlayerEnteredPocketDimensionEventArgs.cs │ │ │ ├── PlayerEnteringHazardEventArgs.cs │ │ │ ├── PlayerEnteringPocketDimensionEventArgs.cs │ │ │ ├── PlayerEscapedEventArgs.cs │ │ │ ├── PlayerEscapingEventArgs.cs │ │ │ ├── PlayerFlippedCoinEventArgs.cs │ │ │ ├── PlayerFlippingCoinEventArgs.cs │ │ │ ├── PlayerGroupChangedEventArgs.cs │ │ │ ├── PlayerGroupChangingEventArgs.cs │ │ │ ├── PlayerHurtEventArgs.cs │ │ │ ├── PlayerHurtingEventArgs.cs │ │ │ ├── PlayerIdledTeslaEventArgs.cs │ │ │ ├── PlayerIdlingTeslaEventArgs.cs │ │ │ ├── PlayerInspectedKeycardEventArgs.cs │ │ │ ├── PlayerInspectingKeycardEventArgs.cs │ │ │ ├── PlayerInteractedDoorEventArgs.cs │ │ │ ├── PlayerInteractedElevatorEventArgs.cs │ │ │ ├── PlayerInteractedGeneratorEventArgs.cs │ │ │ ├── PlayerInteractedLockerEventArgs.cs │ │ │ ├── PlayerInteractedScp330EventArgs.cs │ │ │ ├── PlayerInteractedShootingTargetEventArgs.cs │ │ │ ├── PlayerInteractedToyEventArgs.cs │ │ │ ├── PlayerInteractedWarheadLeverEventArgs.cs │ │ │ ├── PlayerInteractingDoorEventArgs.cs │ │ │ ├── PlayerInteractingElevatorEventArgs.cs │ │ │ ├── PlayerInteractingGeneratorEventArgs.cs │ │ │ ├── PlayerInteractingLockerEventArgs.cs │ │ │ ├── PlayerInteractingScp330EventArgs.cs │ │ │ ├── PlayerInteractingShootingTargetEventArgs.cs │ │ │ ├── PlayerInteractingWarheadLeverEventArgs.cs │ │ │ ├── PlayerItemUsageEffectsApplyingEventArgs.cs │ │ │ ├── PlayerJoinedEventArgs.cs │ │ │ ├── PlayerJumpedEventArgs.cs │ │ │ ├── PlayerKickedEventArgs.cs │ │ │ ├── PlayerKickingEventArgs.cs │ │ │ ├── PlayerLeavingHazardEventArgs.cs │ │ │ ├── PlayerLeavingPocketDimensionEventArgs.cs │ │ │ ├── PlayerLeftEventArgs.cs │ │ │ ├── PlayerLeftHazardEventArgs.cs │ │ │ ├── PlayerLeftPocketDimensionEventArgs.cs │ │ │ ├── PlayerMovementStateChangedEventArgs.cs │ │ │ ├── PlayerMutedEventArgs.cs │ │ │ ├── PlayerMutingEventArgs.cs │ │ │ ├── PlayerOpenedGeneratorEventArgs.cs │ │ │ ├── PlayerOpeningGeneratorEventArgs.cs │ │ │ ├── PlayerPickedUpAmmoEventArgs.cs │ │ │ ├── PlayerPickedUpArmorEventArgs.cs │ │ │ ├── PlayerPickedUpItemEventArgs.cs │ │ │ ├── PlayerPickedUpScp330EventArgs.cs │ │ │ ├── PlayerPickingUpAmmoEventArgs.cs │ │ │ ├── PlayerPickingUpArmorEventArgs.cs │ │ │ ├── PlayerPickingUpItemEventArgs.cs │ │ │ ├── PlayerPickingUpScp330EventArgs.cs │ │ │ ├── PlayerPlacedBloodEventArgs.cs │ │ │ ├── PlayerPlacedBulletHoleEventArgs.cs │ │ │ ├── PlayerPlacingBloodEventArgs.cs │ │ │ ├── PlayerPlacingBulletHoleEventArgs.cs │ │ │ ├── PlayerPreAuthenticatedEventArgs.cs │ │ │ ├── PlayerPreAuthenticatingEventArgs.cs │ │ │ ├── PlayerProcessedJailbirdMessageEventArgs.cs │ │ │ ├── PlayerProcessingJailbirdMessageEventArgs.cs │ │ │ ├── PlayerRaPlayerListAddedPlayerEventArgs.cs │ │ │ ├── PlayerRaPlayerListAddingPlayerEventArgs.cs │ │ │ ├── PlayerReceivedAchievementEventArgs.cs │ │ │ ├── PlayerReceivedLoadoutEventArgs.cs │ │ │ ├── PlayerReceivingLoadoutEventArgs.cs │ │ │ ├── PlayerReceivingVoiceMessageEventArgs.cs │ │ │ ├── PlayerReloadedWeaponEventArgs.cs │ │ │ ├── PlayerReloadingWeaponEventArgs.cs │ │ │ ├── PlayerReportedCheaterEventArgs.cs │ │ │ ├── PlayerReportedPlayerEventArgs.cs │ │ │ ├── PlayerReportingCheaterEventArgs.cs │ │ │ ├── PlayerReportingPlayerEventArgs.cs │ │ │ ├── PlayerRequestedCustomRaInfoEventArgs.cs │ │ │ ├── PlayerRequestedRaPlayerInfoEventArgs.cs │ │ │ ├── PlayerRequestedRaPlayerListEventArgs.cs │ │ │ ├── PlayerRequestedRaPlayersInfoEventArgs.cs │ │ │ ├── PlayerRequestingRaPlayerInfoEventArgs.cs │ │ │ ├── PlayerRequestingRaPlayerListEventArgs.cs │ │ │ ├── PlayerRequestingRaPlayersInfoEventArgs.cs │ │ │ ├── PlayerRoomChangedEventArgs.cs │ │ │ ├── PlayerSearchToyAbortedEventArgs.cs │ │ │ ├── PlayerSearchedAmmoEventArgs.cs │ │ │ ├── PlayerSearchedArmorEventArgs.cs │ │ │ ├── PlayerSearchedPickupEventArgs.cs │ │ │ ├── PlayerSearchedToyEventArgs.cs │ │ │ ├── PlayerSearchingAmmoEventArgs.cs │ │ │ ├── PlayerSearchingArmorEventArgs.cs │ │ │ ├── PlayerSearchingPickupEventArgs.cs │ │ │ ├── PlayerSearchingToyEventArgs.cs │ │ │ ├── PlayerSendingAttachmentsPrefsEventArgs.cs │ │ │ ├── PlayerSendingHitmarkerEventArgs.cs │ │ │ ├── PlayerSendingVoiceMessageEventArgs.cs │ │ │ ├── PlayerSentAttachmentsPrefsEventArgs.cs │ │ │ ├── PlayerSentHitmarkerEventArgs.cs │ │ │ ├── PlayerShootingWeaponEventArgs.cs │ │ │ ├── PlayerShotWeaponEventArgs.cs │ │ │ ├── PlayerSpawnedEventArgs.cs │ │ │ ├── PlayerSpawnedRagdollEventArgs.cs │ │ │ ├── PlayerSpawningEventArgs.cs │ │ │ ├── PlayerSpawningRagdollEventArgs.cs │ │ │ ├── PlayerSpinnedRevolverEventArgs.cs │ │ │ ├── PlayerSpinningRevolverEventArgs.cs │ │ │ ├── PlayerThrewItemEventArgs.cs │ │ │ ├── PlayerThrewProjectileEventArgs.cs │ │ │ ├── PlayerThrowingItemEventArgs.cs │ │ │ ├── PlayerThrowingProjectileEventArgs.cs │ │ │ ├── PlayerToggledDisruptorFiringModeEventArgs.cs │ │ │ ├── PlayerToggledFlashlightEventArgs.cs │ │ │ ├── PlayerToggledNoclipEventArgs.cs │ │ │ ├── PlayerToggledRadioEventArgs.cs │ │ │ ├── PlayerToggledWeaponFlashlightEventArgs.cs │ │ │ ├── PlayerTogglingFlashlightEventArgs.cs │ │ │ ├── PlayerTogglingNoclipEventArgs.cs │ │ │ ├── PlayerTogglingRadioEventArgs.cs │ │ │ ├── PlayerTogglingWeaponFlashlightEventArgs.cs │ │ │ ├── PlayerTriggeredTeslaEventArgs.cs │ │ │ ├── PlayerTriggeringTeslaEventArgs.cs │ │ │ ├── PlayerUncuffedEventArgs.cs │ │ │ ├── PlayerUncuffingEventArgs.cs │ │ │ ├── PlayerUnloadedWeaponEventArgs.cs │ │ │ ├── PlayerUnloadingWeaponEventArgs.cs │ │ │ ├── PlayerUnlockedGeneratorEventArgs.cs │ │ │ ├── PlayerUnlockedWarheadButtonEventArgs.cs │ │ │ ├── PlayerUnlockingGeneratorEventArgs.cs │ │ │ ├── PlayerUnlockingWarheadButtonEventArgs.cs │ │ │ ├── PlayerUnmutedEventArgs.cs │ │ │ ├── PlayerUnmutingEventArgs.cs │ │ │ ├── PlayerUsedIntercomEventArgs.cs │ │ │ ├── PlayerUsedItemEventArgs.cs │ │ │ ├── PlayerUsedRadioEventArgs.cs │ │ │ ├── PlayerUsingIntercomEventArgs.cs │ │ │ ├── PlayerUsingItemEventArgs.cs │ │ │ ├── PlayerUsingRadioEventArgs.cs │ │ │ ├── PlayerValidatedVisibilityEventArgs.cs │ │ │ ├── PlayerZoneChangedEventArgs.cs │ │ │ └── PlayersStayingInHazardEventArgs.cs │ │ ├── Scp0492Events │ │ │ ├── Scp0492ConsumedCorpseEventArgs.cs │ │ │ ├── Scp0492ConsumingCorpseEventArgs.cs │ │ │ ├── Scp0492StartedConsumingCorpseEventArgs.cs │ │ │ └── Scp0492StartingConsumingCorpseEventArgs.cs │ │ ├── Scp049Events │ │ │ ├── Scp049AttackedEventArgs.cs │ │ │ ├── Scp049AttackingEventArgs.cs │ │ │ ├── Scp049ResurrectedBodyEventArgs.cs │ │ │ ├── Scp049ResurrectingBodyEventArgs.cs │ │ │ ├── Scp049SenseKilledTargetEventArgs.cs │ │ │ ├── Scp049SenseLostTargetEventArgs.cs │ │ │ ├── Scp049StartingResurrectionEventArgs.cs │ │ │ ├── Scp049UsedDoctorsCallEventArgs.cs │ │ │ ├── Scp049UsedSenseEventArgs.cs │ │ │ ├── Scp049UsingDoctorsCallEventArgs.cs │ │ │ └── Scp049UsingSenseEventArgs.cs │ │ ├── Scp079Events │ │ │ ├── Scp079BlackedOutRoomEventArgs.cs │ │ │ ├── Scp079BlackedOutZoneEventArgs.cs │ │ │ ├── Scp079BlackingOutRoomEventsArgs.cs │ │ │ ├── Scp079BlackingOutZoneEventArgs.cs │ │ │ ├── Scp079CancelledRoomLockdownEventArgs.cs │ │ │ ├── Scp079CancellingRoomLockdownEventArgs.cs │ │ │ ├── Scp079ChangedCameraEventArgs.cs │ │ │ ├── Scp079ChangingCameraEventArgs.cs │ │ │ ├── Scp079GainedExperienceEventArgs.cs │ │ │ ├── Scp079GainingExperienceEventArgs.cs │ │ │ ├── Scp079LeveledUpEventArgs.cs │ │ │ ├── Scp079LevelingUpEventArgs.cs │ │ │ ├── Scp079LockedDoorEventArgs.cs │ │ │ ├── Scp079LockedDownRoomEventArgs.cs │ │ │ ├── Scp079LockingDoorEventArgs.cs │ │ │ ├── Scp079LockingDownRoomEventArgs.cs │ │ │ ├── Scp079PingedEventArgs.cs │ │ │ ├── Scp079PingingEventArgs.cs │ │ │ ├── Scp079RecontainedEventArgs.cs │ │ │ ├── Scp079RecontainingEventArgs.cs │ │ │ ├── Scp079UnlockedDoorEventArgs.cs │ │ │ ├── Scp079UnlockingDoorEventArgs.cs │ │ │ ├── Scp079UsedTeslaEventArgs.cs │ │ │ └── Scp079UsingTeslaEventArgs.cs │ │ ├── Scp096Events │ │ │ ├── Scp096AddedTargetEventArgs.cs │ │ │ ├── Scp096AddingTargetEventArgs.cs │ │ │ ├── Scp096ChangedStateEventArgs.cs │ │ │ ├── Scp096ChangingStateEventArgs.cs │ │ │ ├── Scp096ChargedEventArgs.cs │ │ │ ├── Scp096ChargingEventArgs.cs │ │ │ ├── Scp096EnragedEventArgs.cs │ │ │ ├── Scp096EnragingEventArgs.cs │ │ │ ├── Scp096PriedGateEventArgs.cs │ │ │ ├── Scp096PryingGateEventArgs.cs │ │ │ ├── Scp096StartCryingEventArgs.cs │ │ │ ├── Scp096StartedCryingEventArgs.cs │ │ │ ├── Scp096TriedNotToCryEventArgs.cs │ │ │ └── Scp096TryingNotToCryEventArgs.cs │ │ ├── Scp106Events │ │ │ ├── Scp106ChangedStalkModeEventArgs.cs │ │ │ ├── Scp106ChangedSubmersionStatusEventArgs.cs │ │ │ ├── Scp106ChangedVigorEventArgs.cs │ │ │ ├── Scp106ChangingStalkModeEventArgs.cs │ │ │ ├── Scp106ChangingSubmersionStatusEventArgs.cs │ │ │ ├── Scp106ChangingVigorEventArgs.cs │ │ │ ├── Scp106TeleportedPlayerEvent.cs │ │ │ ├── Scp106TeleportingPlayerEvent.cs │ │ │ ├── Scp106UsedHunterAtlasEventArgs.cs │ │ │ └── Scp106UsingHunterAtlasEventArgs.cs │ │ ├── Scp127Events │ │ │ ├── Scp127GainExperienceEventArgs.cs │ │ │ ├── Scp127GainingExperienceEventArgs.cs │ │ │ ├── Scp127LevelUpEventArgs.cs │ │ │ ├── Scp127LevellingUpEventArgs.cs │ │ │ ├── Scp127TalkedEventArgs.cs │ │ │ └── Scp127TalkingEventArgs.cs │ │ ├── Scp173Events │ │ │ ├── Scp173AddedObserverEventArgs.cs │ │ │ ├── Scp173AddingObserverEventArgs.cs │ │ │ ├── Scp173BreakneckSpeedChangedEventArgs.cs │ │ │ ├── Scp173BreakneckSpeedChangingEventArgs.cs │ │ │ ├── Scp173CreatedTantrumEventArgs.cs │ │ │ ├── Scp173CreatingTantrumEventArgs.cs │ │ │ ├── Scp173PlayedSoundEventArgs.cs │ │ │ ├── Scp173PlayingSoundEventArgs.cs │ │ │ ├── Scp173RemovedObserverEventArgs.cs │ │ │ ├── Scp173RemovingObserverEventArgs.cs │ │ │ ├── Scp173SnappedEventArgs.cs │ │ │ ├── Scp173SnappingEventArgs.cs │ │ │ ├── Scp173TeleportedEventArgs.cs │ │ │ └── Scp173TeleportingEventArgs.cs │ │ ├── Scp3114Events │ │ │ ├── Scp3114DisguisedEventArgs.cs │ │ │ ├── Scp3114DisguisingEventArgs.cs │ │ │ ├── Scp3114RevealedEventArgs.cs │ │ │ ├── Scp3114RevealingEventArgs.cs │ │ │ ├── Scp3114StartedDanceEventArgs.cs │ │ │ ├── Scp3114StartingDanceEventArgs.cs │ │ │ ├── Scp3114StrangleAbortedEventArgs.cs │ │ │ ├── Scp3114StrangleAbortingEventArgs.cs │ │ │ ├── Scp3114StrangleStartedEventArgs.cs │ │ │ └── Scp3114StrangleStartingEventArgs.cs │ │ ├── Scp914Events │ │ │ ├── Scp914ActivatedEventArgs.cs │ │ │ ├── Scp914ActivatingEventArgs.cs │ │ │ ├── Scp914KnobChangedEventArgs.cs │ │ │ ├── Scp914KnobChangingEventArgs.cs │ │ │ ├── Scp914ProcessedInventoryItemEventArgs.cs │ │ │ ├── Scp914ProcessedPickupEventArgs.cs │ │ │ ├── Scp914ProcessedPlayerEventArgs.cs │ │ │ ├── Scp914ProcessingInventoryItemEventArgs.cs │ │ │ ├── Scp914ProcessingPickupEventArgs.cs │ │ │ └── Scp914ProcessingPlayerEventArgs.cs │ │ ├── Scp939Events │ │ │ ├── Scp939AttackedEventArgs.cs │ │ │ ├── Scp939AttackingEventArgs.cs │ │ │ ├── Scp939CreatedAmnesticCloudEventArgs.cs │ │ │ ├── Scp939CreatingAmnesticCloudEventArgs.cs │ │ │ ├── Scp939FocusedEventArgs.cs │ │ │ ├── Scp939LungedEventArgs.cs │ │ │ ├── Scp939LungingEventArgs.cs │ │ │ ├── Scp939MimickedEnvironmentEventArgs.cs │ │ │ └── Scp939MimickingEnvironmentEventArgs.cs │ │ ├── ScpEvents │ │ │ └── ScpHumeShieldBrokenEventArgs.cs │ │ ├── ServerEvents │ │ │ ├── AchievedMilestoneEventArgs.cs │ │ │ ├── AchievingMilestoneEventArgs.cs │ │ │ ├── BanIssuedEventArgs.cs │ │ │ ├── BanIssuingEventArgs.cs │ │ │ ├── BanRevokedEventArgs.cs │ │ │ ├── BanRevokingEventArgs.cs │ │ │ ├── BanUpdatedEventArgs.cs │ │ │ ├── BanUpdatingEventArgs.cs │ │ │ ├── BlastDoorChangedEventArgs.cs │ │ │ ├── BlastDoorChangingEventArgs.cs │ │ │ ├── CassieAnnouncedEventArgs.cs │ │ │ ├── CassieAnnouncingEventArgs.cs │ │ │ ├── CassieQueuedScpTerminationEventArgs.cs │ │ │ ├── CassieQueuingScpTerminationEventArgs.cs │ │ │ ├── CheckpointDoorSequenceChangedEventArgs.cs │ │ │ ├── CheckpointDoorSequenceChangingEventArgs.cs │ │ │ ├── CommandExecutedEventArgs.cs │ │ │ ├── CommandExecutingEventArgs.cs │ │ │ ├── DeadmanSequenceActivatingEventArgs.cs │ │ │ ├── DoorDamagedEventArgs.cs │ │ │ ├── DoorDamagingEventArgs.cs │ │ │ ├── DoorLockChangedEventArgs.cs │ │ │ ├── DoorRepairedEventArgs.cs │ │ │ ├── DoorRepairingEventArgs.cs │ │ │ ├── ElevatorSequenceChangedEventArgs.cs │ │ │ ├── ExplosionSpawnedEventArgs.cs │ │ │ ├── ExplosionSpawningEventArgs.cs │ │ │ ├── GeneratorActivatedEventArgs.cs │ │ │ ├── GeneratorActivatingEventArgs.cs │ │ │ ├── ItemSpawnedEventArgs.cs │ │ │ ├── ItemSpawningEventArgs.cs │ │ │ ├── LczDecontaminationAnnouncedEventArgs.cs │ │ │ ├── LczDecontaminationStartingEventArgs.cs │ │ │ ├── MapGeneratedEventArgs.cs │ │ │ ├── MapGeneratingEventArgs.cs │ │ │ ├── ModifiedFactionInfluenceEventArgs.cs │ │ │ ├── ModifyingFactionInfluenceEventArgs.cs │ │ │ ├── PickupCreatedEventArgs.cs │ │ │ ├── PickupDestroyedEventArgs.cs │ │ │ ├── ProjectileExplodedEventArgs.cs │ │ │ ├── ProjectileExplodingEventArgs.cs │ │ │ ├── RoomColorChangedEventArgs.cs │ │ │ ├── RoomLightChangedEventArgs.cs │ │ │ ├── RoundEndedEventArgs.cs │ │ │ ├── RoundEndingConditionsCheckEventArgs.cs │ │ │ ├── RoundEndingEventArgs.cs │ │ │ ├── RoundStartingEventArgs.cs │ │ │ ├── SendingAdminChatEventArgs.cs │ │ │ ├── SentAdminChatEventArgs.cs │ │ │ ├── WaveRespawnedEventArgs.cs │ │ │ ├── WaveRespawningEventArgs.cs │ │ │ ├── WaveTeamSelectedEventArgs.cs │ │ │ └── WaveTeamSelectingEventArgs.cs │ │ └── WarheadEvents │ │ │ ├── WarheadDetonatedEventArgs.cs │ │ │ ├── WarheadDetonatingEventArgs.cs │ │ │ ├── WarheadStartedEventArgs.cs │ │ │ ├── WarheadStartingEventArgs.cs │ │ │ ├── WarheadStoppedEventArgs.cs │ │ │ └── WarheadStoppingEventArgs.cs │ ├── CustomHandlers │ │ ├── CustomEventHandlers.cs │ │ └── CustomHandlersManager.cs │ ├── EventManager.cs │ ├── Handlers │ │ ├── ObjectiveEvents.EventHandlers.cs │ │ ├── PlayerEvents.EventHandlers.cs │ │ ├── Scp0492Events.EventHandlers.cs │ │ ├── Scp049Events.EventHandlers.cs │ │ ├── Scp079Events.EventHandlers.cs │ │ ├── Scp096Events.EventHandlers.cs │ │ ├── Scp106Events.EventHandlers.cs │ │ ├── Scp127Events.EventHandlers.cs │ │ ├── Scp173Events.EventHandlers.cs │ │ ├── Scp3114Events.EventHandlers.cs │ │ ├── Scp914Events.EventHandlers.cs │ │ ├── Scp939Events.EventHandlers.cs │ │ ├── ScpEvents.EventHandlers.cs │ │ ├── ServerEvents.EventHandlers.cs │ │ └── WarheadEvents.EventHandlers.cs │ ├── LabEventHandler.cs │ └── LabEventHandler{TEventArgs}.cs ├── Features │ ├── Audio │ │ └── AudioTransmitter.cs │ ├── Console │ │ └── Logger.cs │ ├── Enums │ │ ├── CommandType.cs │ │ ├── DoorName.cs │ │ ├── PlayerSearchFlags.cs │ │ └── Scp079PingType.cs │ ├── Extensions │ │ ├── LinqExtensions.cs │ │ ├── PriorityQueue.cs │ │ ├── PriorityQueuePool.cs │ │ └── RoleExtensions.cs │ ├── Interfaces │ │ └── IScp914ItemProcessor.cs │ ├── LabApiProperties.cs │ ├── Permissions │ │ ├── IPermissionsProvider.cs │ │ ├── PermissionsExtensions.cs │ │ ├── PermissionsManager.cs │ │ └── Providers │ │ │ ├── DefaultPermissionsProvider.cs │ │ │ └── PermissionGroup.cs │ ├── Stores │ │ ├── CustomDataStore.cs │ │ ├── CustomDataStoreManager.cs │ │ └── CustomDataStore{TStore}.cs │ └── Wrappers │ │ ├── AdminToys │ │ ├── AdminToy.cs │ │ ├── CameraToy.cs │ │ ├── CapybaraToy.cs │ │ ├── InteractableToy.cs │ │ ├── LightSourceToy.cs │ │ ├── PrimitiveObjectToy.cs │ │ ├── ShootingTargetToy.cs │ │ ├── SpawnableCullingParent.cs │ │ ├── SpeakerToy.cs │ │ ├── TextToy.cs │ │ └── WaypointToy.cs │ │ ├── Facility │ │ ├── Cassie.cs │ │ ├── Decontamination.cs │ │ ├── Doors │ │ │ ├── BreakableDoor.cs │ │ │ ├── BulkheadDoor.cs │ │ │ ├── CheckpointDoor.cs │ │ │ ├── Door.cs │ │ │ ├── DummyDoor.cs │ │ │ ├── ElevatorDoor.cs │ │ │ ├── Extensions │ │ │ │ └── DoorCrusher.cs │ │ │ ├── Gate.cs │ │ │ ├── NonInteractableDoor.cs │ │ │ └── Timed173Gate.cs │ │ ├── Elevator.cs │ │ ├── Hazards │ │ │ ├── AmnesticCloudHazard.cs │ │ │ ├── DecayableHazard.cs │ │ │ ├── Hazard.cs │ │ │ ├── SinkholeHazard.cs │ │ │ ├── TantrumHazard.cs │ │ │ └── Tesla.cs │ │ ├── Map.cs │ │ ├── Respawning │ │ │ ├── RespawnWaves.cs │ │ │ └── Waves │ │ │ │ ├── ChaosWave.cs │ │ │ │ ├── MiniChaosWave.cs │ │ │ │ ├── MiniMtfWave.cs │ │ │ │ ├── MiniRespawnWave.cs │ │ │ │ ├── MtfWave.cs │ │ │ │ └── RespawnWave.cs │ │ ├── Rooms │ │ │ ├── Camera.cs │ │ │ ├── LightsController.cs │ │ │ ├── PocketDimension │ │ │ │ ├── PocketDimension.cs │ │ │ │ ├── PocketItem.cs │ │ │ │ └── PocketTeleport.cs │ │ │ ├── Room.cs │ │ │ └── Scp914 │ │ │ │ ├── BaseGameItemProcessor.cs │ │ │ │ ├── ItemProcessorAdapter.cs │ │ │ │ └── Scp914.cs │ │ ├── Round.cs │ │ ├── Structures │ │ │ ├── ExperimentalWeaponLocker.cs │ │ │ ├── Generator.cs │ │ │ ├── LargeLocker.cs │ │ │ ├── Locker.cs │ │ │ ├── LockerChamber.cs │ │ │ ├── MicroPedestal.cs │ │ │ ├── PedestalLocker.cs │ │ │ ├── RifleRackLocker.cs │ │ │ ├── StandardLocker.cs │ │ │ ├── Structure.cs │ │ │ ├── WallCabinet.cs │ │ │ ├── Window.cs │ │ │ └── Workstation.cs │ │ └── Warhead.cs │ │ ├── Items │ │ ├── AmmoItem.cs │ │ ├── BodyArmorItem.cs │ │ ├── CoinItem.cs │ │ ├── Firearm │ │ │ ├── FirearmItem.cs │ │ │ └── SpecialFirearms │ │ │ │ ├── ParticleDisruptorItem.cs │ │ │ │ ├── RevolverFirearm.cs │ │ │ │ ├── Scp127Firearm.cs │ │ │ │ └── ShotgunFirearm.cs │ │ ├── Item.cs │ │ ├── JailbirdItem.cs │ │ ├── KeycardItem.cs │ │ ├── Light │ │ │ ├── FlashlightItem.cs │ │ │ ├── LanternItem.cs │ │ │ └── LightItem.cs │ │ ├── MicroHIDItem.cs │ │ ├── RadioItem.cs │ │ ├── ThrowableItem.cs │ │ └── Usable │ │ │ ├── Consumable │ │ │ ├── AdrenalineItem.cs │ │ │ ├── AntiScp207Item.cs │ │ │ ├── ConsumableItem.cs │ │ │ ├── MedkitItem.cs │ │ │ ├── PainkillersItem.cs │ │ │ ├── Scp1853Item.cs │ │ │ ├── Scp207Item.cs │ │ │ └── Scp500Item.cs │ │ │ ├── Scp1344Item.cs │ │ │ ├── Scp1576Item.cs │ │ │ ├── Scp244Item.cs │ │ │ ├── Scp268Item.cs │ │ │ ├── Scp330Item.cs │ │ │ └── UsableItem.cs │ │ ├── Pickups │ │ ├── AmmoPickup.cs │ │ ├── BodyArmorPickup.cs │ │ ├── FirearmPickup.cs │ │ ├── JailbirdPickup.cs │ │ ├── KeycardPickup.cs │ │ ├── MicroHIDPickup.cs │ │ ├── Pickup.cs │ │ ├── Projectiles │ │ │ ├── Grenades │ │ │ │ ├── ExplosiveGrenadeProjectile.cs │ │ │ │ ├── FlashbangProjectile.cs │ │ │ │ ├── Scp018Projectile.cs │ │ │ │ ├── Scp2176Projectile.cs │ │ │ │ └── TimedGrenadeProjectile.cs │ │ │ └── Projectile.cs │ │ ├── RadioPickup.cs │ │ ├── Scp1576Pickup.cs │ │ ├── Scp244Pickup.cs │ │ ├── Scp330Pickup.cs │ │ └── TimedGrenadePickup.cs │ │ ├── Players │ │ ├── Player.cs │ │ └── Ragdoll.cs │ │ └── Server │ │ ├── ReservedSlots.cs │ │ ├── Server.cs │ │ └── Whitelist.cs ├── LabApi.csproj ├── LabApi.csproj.DotSettings ├── Loader │ ├── CommandLoader.cs │ ├── ConfigurationLoader.cs │ ├── Constants │ │ └── Priority.cs │ ├── Features │ │ ├── Commands │ │ │ ├── Extensions │ │ │ │ └── CommandExtensions.cs │ │ │ ├── LabApiParentCommand.cs │ │ │ ├── PluginPermissionsCommand.cs │ │ │ └── Reload │ │ │ │ ├── ConfigsCommand.cs │ │ │ │ └── ReloadParentCommand.cs │ │ ├── Configuration │ │ │ └── LabApiConfig.cs │ │ ├── Misc │ │ │ └── AssemblyUtils.cs │ │ ├── Paths │ │ │ └── PathManager.cs │ │ ├── Plugins │ │ │ ├── Configuration │ │ │ │ └── Properties.cs │ │ │ ├── Enums │ │ │ │ ├── LoadPriority.cs │ │ │ │ └── OptionalBoolean.cs │ │ │ ├── Plugin.cs │ │ │ └── Plugin{TConfig}.cs │ │ └── Yaml │ │ │ ├── CustomConverters │ │ │ ├── CustomColor32Converter.cs │ │ │ ├── CustomColorConverter.cs │ │ │ ├── CustomQuaternionConverter.cs │ │ │ └── CustomVectorConverter.cs │ │ │ ├── Extensions │ │ │ └── YamlMappingExtensions.cs │ │ │ └── YamlConfigParser.cs │ └── PluginLoader.cs ├── README.md └── stylecop.json ├── README.md └── StyleCopAnalyzers.ruleset /.github/ISSUE_TEMPLATE/1-bug-template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/.github/ISSUE_TEMPLATE/1-bug-template.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/2-idea-template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/.github/ISSUE_TEMPLATE/2-idea-template.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/3-task-template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/.github/ISSUE_TEMPLATE/3-task-template.yml -------------------------------------------------------------------------------- /.github/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/.github/README.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab/issue_templates/New Bug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/.gitlab/issue_templates/New Bug.md -------------------------------------------------------------------------------- /.gitlab/issue_templates/New Idea.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/.gitlab/issue_templates/New Idea.md -------------------------------------------------------------------------------- /.gitlab/issue_templates/New Task - Docless.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/.gitlab/issue_templates/New Task - Docless.md -------------------------------------------------------------------------------- /.gitlab/issue_templates/New Task.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/.gitlab/issue_templates/New Task.md -------------------------------------------------------------------------------- /.gitlab/merge_request_templates/MR Template - Docless.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/.gitlab/merge_request_templates/MR Template - Docless.md -------------------------------------------------------------------------------- /.gitlab/merge_request_templates/MR Template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/.gitlab/merge_request_templates/MR Template.md -------------------------------------------------------------------------------- /EVENTGUIDELINES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/EVENTGUIDELINES.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LICENSE -------------------------------------------------------------------------------- /LabApi.Examples/Commands/CommandsPlugin/Commands/Fun/EffectCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi.Examples/Commands/CommandsPlugin/Commands/Fun/EffectCommand.cs -------------------------------------------------------------------------------- /LabApi.Examples/Commands/CommandsPlugin/Commands/Fun/FlashbangCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi.Examples/Commands/CommandsPlugin/Commands/Fun/FlashbangCommand.cs -------------------------------------------------------------------------------- /LabApi.Examples/Commands/CommandsPlugin/Commands/Fun/FunParentCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi.Examples/Commands/CommandsPlugin/Commands/Fun/FunParentCommand.cs -------------------------------------------------------------------------------- /LabApi.Examples/Commands/CommandsPlugin/Commands/Fun/GrenadeCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi.Examples/Commands/CommandsPlugin/Commands/Fun/GrenadeCommand.cs -------------------------------------------------------------------------------- /LabApi.Examples/Commands/CommandsPlugin/Commands/HelloCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi.Examples/Commands/CommandsPlugin/Commands/HelloCommand.cs -------------------------------------------------------------------------------- /LabApi.Examples/Commands/CommandsPlugin/CommandsPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi.Examples/Commands/CommandsPlugin/CommandsPlugin.cs -------------------------------------------------------------------------------- /LabApi.Examples/Commands/CommandsPlugin/CommandsPlugin.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi.Examples/Commands/CommandsPlugin/CommandsPlugin.csproj -------------------------------------------------------------------------------- /LabApi.Examples/Commands/CommandsPlugin/Helpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi.Examples/Commands/CommandsPlugin/Helpers.cs -------------------------------------------------------------------------------- /LabApi.Examples/Commands/CommandsPlugin/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi.Examples/Commands/CommandsPlugin/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /LabApi.Examples/Commands/CommandsPlugin2/Commands/ClientDotCommands/MeleeCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi.Examples/Commands/CommandsPlugin2/Commands/ClientDotCommands/MeleeCommand.cs -------------------------------------------------------------------------------- /LabApi.Examples/Commands/CommandsPlugin2/Commands/RemoteAdminCommands/ChangeDefaultGravityCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi.Examples/Commands/CommandsPlugin2/Commands/RemoteAdminCommands/ChangeDefaultGravityCommand.cs -------------------------------------------------------------------------------- /LabApi.Examples/Commands/CommandsPlugin2/Commands/RemoteAdminCommands/ChangeMaxHpCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi.Examples/Commands/CommandsPlugin2/Commands/RemoteAdminCommands/ChangeMaxHpCommand.cs -------------------------------------------------------------------------------- /LabApi.Examples/Commands/CommandsPlugin2/CommandsOverviewPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi.Examples/Commands/CommandsPlugin2/CommandsOverviewPlugin.cs -------------------------------------------------------------------------------- /LabApi.Examples/Commands/CommandsPlugin2/CommandsPlugin2.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi.Examples/Commands/CommandsPlugin2/CommandsPlugin2.csproj -------------------------------------------------------------------------------- /LabApi.Examples/Commands/CommandsPlugin2/EventHandlers/GravityEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi.Examples/Commands/CommandsPlugin2/EventHandlers/GravityEventHandler.cs -------------------------------------------------------------------------------- /LabApi.Examples/Commands/CommandsPlugin2/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi.Examples/Commands/CommandsPlugin2/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /LabApi.Examples/HelloWorld/HelloWorldPlugin-Custom/HelloWorldPlugin-Custom.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi.Examples/HelloWorld/HelloWorldPlugin-Custom/HelloWorldPlugin-Custom.csproj -------------------------------------------------------------------------------- /LabApi.Examples/HelloWorld/HelloWorldPlugin-Custom/HelloWorldPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi.Examples/HelloWorld/HelloWorldPlugin-Custom/HelloWorldPlugin.cs -------------------------------------------------------------------------------- /LabApi.Examples/HelloWorld/HelloWorldPlugin-Custom/MyCustomEventsHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi.Examples/HelloWorld/HelloWorldPlugin-Custom/MyCustomEventsHandler.cs -------------------------------------------------------------------------------- /LabApi.Examples/HelloWorld/HelloWorldPlugin-Custom/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi.Examples/HelloWorld/HelloWorldPlugin-Custom/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /LabApi.Examples/HelloWorld/HelloWorldPlugin-Legacy/HelloWorldPlugin-Legacy.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi.Examples/HelloWorld/HelloWorldPlugin-Legacy/HelloWorldPlugin-Legacy.csproj -------------------------------------------------------------------------------- /LabApi.Examples/HelloWorld/HelloWorldPlugin-Legacy/HelloWorldPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi.Examples/HelloWorld/HelloWorldPlugin-Legacy/HelloWorldPlugin.cs -------------------------------------------------------------------------------- /LabApi.Examples/HelloWorld/HelloWorldPlugin-Legacy/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi.Examples/HelloWorld/HelloWorldPlugin-Legacy/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /LabApi.Examples/LogAll/LogPlugin/LogPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi.Examples/LogAll/LogPlugin/LogPlugin.cs -------------------------------------------------------------------------------- /LabApi.Examples/LogAll/LogPlugin/LogPlugin.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi.Examples/LogAll/LogPlugin/LogPlugin.csproj -------------------------------------------------------------------------------- /LabApi.Examples/LogAll/LogPlugin/MyCustomEventsHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi.Examples/LogAll/LogPlugin/MyCustomEventsHandler.cs -------------------------------------------------------------------------------- /LabApi.Examples/LogAll/LogPlugin/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi.Examples/LogAll/LogPlugin/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /LabApi.SourceGenerators/LabApi.SourceGenerators.Tests/EventSourceGeneratorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi.SourceGenerators/LabApi.SourceGenerators.Tests/EventSourceGeneratorTests.cs -------------------------------------------------------------------------------- /LabApi.SourceGenerators/LabApi.SourceGenerators.Tests/InitializeWrapperSourceGeneratorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi.SourceGenerators/LabApi.SourceGenerators.Tests/InitializeWrapperSourceGeneratorTests.cs -------------------------------------------------------------------------------- /LabApi.SourceGenerators/LabApi.SourceGenerators.Tests/LabApi.SourceGenerators.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi.SourceGenerators/LabApi.SourceGenerators.Tests/LabApi.SourceGenerators.Tests.csproj -------------------------------------------------------------------------------- /LabApi.SourceGenerators/LabApi.SourceGenerators/AnalyzerReleases.Shipped.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi.SourceGenerators/LabApi.SourceGenerators/AnalyzerReleases.Shipped.md -------------------------------------------------------------------------------- /LabApi.SourceGenerators/LabApi.SourceGenerators/Core.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi.SourceGenerators/LabApi.SourceGenerators/Core.cs -------------------------------------------------------------------------------- /LabApi.SourceGenerators/LabApi.SourceGenerators/EventSourceGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi.SourceGenerators/LabApi.SourceGenerators/EventSourceGenerator.cs -------------------------------------------------------------------------------- /LabApi.SourceGenerators/LabApi.SourceGenerators/InitializeWrapperSourceGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi.SourceGenerators/LabApi.SourceGenerators/InitializeWrapperSourceGenerator.cs -------------------------------------------------------------------------------- /LabApi.SourceGenerators/LabApi.SourceGenerators/LabApi.SourceGenerators.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi.SourceGenerators/LabApi.SourceGenerators/LabApi.SourceGenerators.csproj -------------------------------------------------------------------------------- /LabApi.SourceGenerators/LabApi.SourceGenerators/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi.SourceGenerators/LabApi.SourceGenerators/Properties/launchSettings.json -------------------------------------------------------------------------------- /LabApi.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi.sln -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Interfaces/AdminToys/IAdminToyEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Interfaces/AdminToys/IAdminToyEvent.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Interfaces/AdminToys/IInteractableEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Interfaces/AdminToys/IInteractableEvent.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Interfaces/AdminToys/IShootingTargetEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Interfaces/AdminToys/IShootingTargetEvent.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Interfaces/Doors/IDoorEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Interfaces/Doors/IDoorEvent.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Interfaces/Doors/IGateEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Interfaces/Doors/IGateEvent.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Interfaces/Hazards/IAmnesticCloudEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Interfaces/Hazards/IAmnesticCloudEvent.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Interfaces/Hazards/IHazardEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Interfaces/Hazards/IHazardEvent.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Interfaces/Hazards/ITantrumEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Interfaces/Hazards/ITantrumEvent.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Interfaces/ICameraEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Interfaces/ICameraEvent.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Interfaces/ICancellableEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Interfaces/ICancellableEvent.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Interfaces/ICommandSenderEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Interfaces/ICommandSenderEvent.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Interfaces/IElevatorEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Interfaces/IElevatorEvent.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Interfaces/IGroupEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Interfaces/IGroupEvent.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Interfaces/IObjectiveEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Interfaces/IObjectiveEvent.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Interfaces/IPlayerEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Interfaces/IPlayerEvent.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Interfaces/IRagdollEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Interfaces/IRagdollEvent.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Interfaces/IRoomEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Interfaces/IRoomEvent.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Interfaces/IScp914Event.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Interfaces/IScp914Event.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Interfaces/ITargetEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Interfaces/ITargetEvent.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Interfaces/ITeslaEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Interfaces/ITeslaEvent.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Interfaces/IVoiceMessageEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Interfaces/IVoiceMessageEvent.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Interfaces/Items/Firearms/IRevolverItemEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Interfaces/Items/Firearms/IRevolverItemEvent.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Interfaces/Items/Firearms/IScp127ItemEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Interfaces/Items/Firearms/IScp127ItemEvent.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Interfaces/Items/IBodyArmorItemEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Interfaces/Items/IBodyArmorItemEvent.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Interfaces/Items/ICandyItemEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Interfaces/Items/ICandyItemEvent.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Interfaces/Items/ICoinItemEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Interfaces/Items/ICoinItemEvent.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Interfaces/Items/IFirearmItemEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Interfaces/Items/IFirearmItemEvent.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Interfaces/Items/IItemEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Interfaces/Items/IItemEvent.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Interfaces/Items/IJailbirdEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Interfaces/Items/IJailbirdEvent.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Interfaces/Items/IKeycardItemEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Interfaces/Items/IKeycardItemEvent.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Interfaces/Items/ILightItemEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Interfaces/Items/ILightItemEvent.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Interfaces/Items/IRadioItemEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Interfaces/Items/IRadioItemEvent.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Interfaces/Items/IThrowableItemEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Interfaces/Items/IThrowableItemEvent.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Interfaces/Items/IUsableItemEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Interfaces/Items/IUsableItemEvent.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Interfaces/Pickups/IAmmoPickupEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Interfaces/Pickups/IAmmoPickupEvent.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Interfaces/Pickups/IBodyArmorPickupEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Interfaces/Pickups/IBodyArmorPickupEvent.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Interfaces/Pickups/ICandyPickupEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Interfaces/Pickups/ICandyPickupEvent.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Interfaces/Pickups/IExplosionGrenadeEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Interfaces/Pickups/IExplosionGrenadeEvent.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Interfaces/Pickups/IPickupEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Interfaces/Pickups/IPickupEvent.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Interfaces/Pickups/IProjectileEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Interfaces/Pickups/IProjectileEvent.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Interfaces/Pickups/ITimedGrenadeEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Interfaces/Pickups/ITimedGrenadeEvent.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Interfaces/Structures/IGeneratorEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Interfaces/Structures/IGeneratorEvent.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Interfaces/Structures/ILockerEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Interfaces/Structures/ILockerEvent.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Interfaces/Structures/IStructureEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Interfaces/Structures/IStructureEvent.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/ObjectiveEvents/EnemyKilledObjectiveEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/ObjectiveEvents/EnemyKilledObjectiveEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/ObjectiveEvents/EnemyKillingObjectiveEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/ObjectiveEvents/EnemyKillingObjectiveEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/ObjectiveEvents/EscapedObjectiveEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/ObjectiveEvents/EscapedObjectiveEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/ObjectiveEvents/EscapingObjectiveEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/ObjectiveEvents/EscapingObjectiveEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/ObjectiveEvents/GeneratorActivatedObjectiveEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/ObjectiveEvents/GeneratorActivatedObjectiveEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/ObjectiveEvents/GeneratorActivatingObjectiveEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/ObjectiveEvents/GeneratorActivatingObjectiveEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/ObjectiveEvents/ObjectiveCompletedBaseEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/ObjectiveEvents/ObjectiveCompletedBaseEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/ObjectiveEvents/ObjectiveCompletingBaseEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/ObjectiveEvents/ObjectiveCompletingBaseEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/ObjectiveEvents/ScpDamagedObjectiveEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/ObjectiveEvents/ScpDamagedObjectiveEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/ObjectiveEvents/ScpDamagingObjectiveEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/ObjectiveEvents/ScpDamagingObjectiveEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/ObjectiveEvents/ScpItemPickedObjectiveEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/ObjectiveEvents/ScpItemPickedObjectiveEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/ObjectiveEvents/ScpItemPickingObjectiveEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/ObjectiveEvents/ScpItemPickingObjectiveEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerActivatedGeneratorEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerActivatedGeneratorEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerActivatingGeneratorEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerActivatingGeneratorEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerAimedWeaponEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerAimedWeaponEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerAimingWeaponEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerAimingWeaponEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerBannedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerBannedEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerBanningEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerBanningEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerCancelledUsingItemEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerCancelledUsingItemEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerCancellingUsingItemEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerCancellingUsingItemEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerChangedAttachmentsEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerChangedAttachmentsEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerChangedBadgeVisibilityEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerChangedBadgeVisibilityEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerChangedItemEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerChangedItemEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerChangedNicknameEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerChangedNicknameEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerChangedRadioRangeEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerChangedRadioRangeEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerChangedRoleEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerChangedRoleEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerChangedSpectatorEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerChangedSpectatorEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerChangingAttachmentsEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerChangingAttachmentsEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerChangingBadgeVisibilityEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerChangingBadgeVisibilityEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerChangingItemEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerChangingItemEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerChangingNicknameEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerChangingNicknameEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerChangingRadioRangeEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerChangingRadioRangeEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerChangingRoleEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerChangingRoleEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerCheckedHitmarkerEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerCheckedHitmarkerEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerClosedGeneratorEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerClosedGeneratorEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerClosingGeneratorEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerClosingGeneratorEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerCuffedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerCuffedEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerCuffingEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerCuffingEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerDamagedShootingTargetEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerDamagedShootingTargetEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerDamagedWindowEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerDamagedWindowEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerDamagingShootingTargetEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerDamagingShootingTargetEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerDamagingWindowEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerDamagingWindowEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerDeactivatedGeneratorEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerDeactivatedGeneratorEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerDeactivatingGeneratorEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerDeactivatingGeneratorEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerDeathEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerDeathEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerDetectedByScp1344EventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerDetectedByScp1344EventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerDroppedAmmoEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerDroppedAmmoEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerDroppedItemEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerDroppedItemEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerDroppingAmmoEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerDroppingAmmoEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerDroppingItemEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerDroppingItemEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerDryFiredWeaponEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerDryFiredWeaponEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerDryFiringWeaponEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerDryFiringWeaponEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerDyingEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerDyingEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerEffectUpdatedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerEffectUpdatedEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerEffectUpdatingEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerEffectUpdatingEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerEnteredHazardEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerEnteredHazardEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerEnteredPocketDimensionEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerEnteredPocketDimensionEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerEnteringHazardEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerEnteringHazardEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerEnteringPocketDimensionEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerEnteringPocketDimensionEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerEscapedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerEscapedEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerEscapingEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerEscapingEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerFlippedCoinEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerFlippedCoinEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerFlippingCoinEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerFlippingCoinEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerGroupChangedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerGroupChangedEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerGroupChangingEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerGroupChangingEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerHurtEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerHurtEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerHurtingEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerHurtingEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerIdledTeslaEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerIdledTeslaEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerIdlingTeslaEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerIdlingTeslaEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerInspectedKeycardEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerInspectedKeycardEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerInspectingKeycardEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerInspectingKeycardEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerInteractedDoorEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerInteractedDoorEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerInteractedElevatorEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerInteractedElevatorEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerInteractedGeneratorEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerInteractedGeneratorEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerInteractedLockerEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerInteractedLockerEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerInteractedScp330EventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerInteractedScp330EventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerInteractedShootingTargetEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerInteractedShootingTargetEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerInteractedToyEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerInteractedToyEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerInteractedWarheadLeverEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerInteractedWarheadLeverEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerInteractingDoorEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerInteractingDoorEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerInteractingElevatorEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerInteractingElevatorEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerInteractingGeneratorEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerInteractingGeneratorEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerInteractingLockerEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerInteractingLockerEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerInteractingScp330EventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerInteractingScp330EventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerInteractingShootingTargetEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerInteractingShootingTargetEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerInteractingWarheadLeverEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerInteractingWarheadLeverEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerItemUsageEffectsApplyingEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerItemUsageEffectsApplyingEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerJoinedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerJoinedEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerJumpedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerJumpedEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerKickedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerKickedEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerKickingEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerKickingEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerLeavingHazardEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerLeavingHazardEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerLeavingPocketDimensionEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerLeavingPocketDimensionEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerLeftEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerLeftEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerLeftHazardEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerLeftHazardEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerLeftPocketDimensionEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerLeftPocketDimensionEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerMovementStateChangedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerMovementStateChangedEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerMutedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerMutedEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerMutingEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerMutingEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerOpenedGeneratorEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerOpenedGeneratorEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerOpeningGeneratorEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerOpeningGeneratorEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerPickedUpAmmoEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerPickedUpAmmoEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerPickedUpArmorEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerPickedUpArmorEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerPickedUpItemEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerPickedUpItemEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerPickedUpScp330EventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerPickedUpScp330EventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerPickingUpAmmoEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerPickingUpAmmoEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerPickingUpArmorEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerPickingUpArmorEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerPickingUpItemEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerPickingUpItemEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerPickingUpScp330EventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerPickingUpScp330EventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerPlacedBloodEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerPlacedBloodEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerPlacedBulletHoleEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerPlacedBulletHoleEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerPlacingBloodEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerPlacingBloodEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerPlacingBulletHoleEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerPlacingBulletHoleEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerPreAuthenticatedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerPreAuthenticatedEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerPreAuthenticatingEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerPreAuthenticatingEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerProcessedJailbirdMessageEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerProcessedJailbirdMessageEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerProcessingJailbirdMessageEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerProcessingJailbirdMessageEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerRaPlayerListAddedPlayerEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerRaPlayerListAddedPlayerEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerRaPlayerListAddingPlayerEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerRaPlayerListAddingPlayerEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerReceivedAchievementEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerReceivedAchievementEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerReceivedLoadoutEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerReceivedLoadoutEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerReceivingLoadoutEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerReceivingLoadoutEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerReceivingVoiceMessageEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerReceivingVoiceMessageEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerReloadedWeaponEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerReloadedWeaponEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerReloadingWeaponEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerReloadingWeaponEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerReportedCheaterEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerReportedCheaterEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerReportedPlayerEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerReportedPlayerEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerReportingCheaterEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerReportingCheaterEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerReportingPlayerEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerReportingPlayerEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerRequestedCustomRaInfoEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerRequestedCustomRaInfoEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerRequestedRaPlayerInfoEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerRequestedRaPlayerInfoEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerRequestedRaPlayerListEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerRequestedRaPlayerListEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerRequestedRaPlayersInfoEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerRequestedRaPlayersInfoEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerRequestingRaPlayerInfoEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerRequestingRaPlayerInfoEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerRequestingRaPlayerListEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerRequestingRaPlayerListEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerRequestingRaPlayersInfoEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerRequestingRaPlayersInfoEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerRoomChangedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerRoomChangedEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerSearchToyAbortedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerSearchToyAbortedEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerSearchedAmmoEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerSearchedAmmoEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerSearchedArmorEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerSearchedArmorEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerSearchedPickupEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerSearchedPickupEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerSearchedToyEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerSearchedToyEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerSearchingAmmoEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerSearchingAmmoEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerSearchingArmorEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerSearchingArmorEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerSearchingPickupEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerSearchingPickupEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerSearchingToyEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerSearchingToyEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerSendingAttachmentsPrefsEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerSendingAttachmentsPrefsEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerSendingHitmarkerEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerSendingHitmarkerEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerSendingVoiceMessageEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerSendingVoiceMessageEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerSentAttachmentsPrefsEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerSentAttachmentsPrefsEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerSentHitmarkerEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerSentHitmarkerEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerShootingWeaponEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerShootingWeaponEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerShotWeaponEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerShotWeaponEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerSpawnedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerSpawnedEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerSpawnedRagdollEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerSpawnedRagdollEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerSpawningEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerSpawningEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerSpawningRagdollEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerSpawningRagdollEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerSpinnedRevolverEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerSpinnedRevolverEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerSpinningRevolverEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerSpinningRevolverEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerThrewItemEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerThrewItemEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerThrewProjectileEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerThrewProjectileEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerThrowingItemEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerThrowingItemEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerThrowingProjectileEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerThrowingProjectileEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerToggledDisruptorFiringModeEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerToggledDisruptorFiringModeEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerToggledFlashlightEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerToggledFlashlightEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerToggledNoclipEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerToggledNoclipEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerToggledRadioEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerToggledRadioEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerToggledWeaponFlashlightEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerToggledWeaponFlashlightEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerTogglingFlashlightEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerTogglingFlashlightEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerTogglingNoclipEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerTogglingNoclipEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerTogglingRadioEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerTogglingRadioEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerTogglingWeaponFlashlightEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerTogglingWeaponFlashlightEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerTriggeredTeslaEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerTriggeredTeslaEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerTriggeringTeslaEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerTriggeringTeslaEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerUncuffedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerUncuffedEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerUncuffingEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerUncuffingEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerUnloadedWeaponEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerUnloadedWeaponEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerUnloadingWeaponEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerUnloadingWeaponEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerUnlockedGeneratorEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerUnlockedGeneratorEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerUnlockedWarheadButtonEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerUnlockedWarheadButtonEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerUnlockingGeneratorEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerUnlockingGeneratorEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerUnlockingWarheadButtonEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerUnlockingWarheadButtonEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerUnmutedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerUnmutedEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerUnmutingEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerUnmutingEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerUsedIntercomEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerUsedIntercomEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerUsedItemEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerUsedItemEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerUsedRadioEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerUsedRadioEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerUsingIntercomEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerUsingIntercomEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerUsingItemEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerUsingItemEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerUsingRadioEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerUsingRadioEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerValidatedVisibilityEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerValidatedVisibilityEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayerZoneChangedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayerZoneChangedEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/PlayerEvents/PlayersStayingInHazardEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/PlayerEvents/PlayersStayingInHazardEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Scp0492Events/Scp0492ConsumedCorpseEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Scp0492Events/Scp0492ConsumedCorpseEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Scp0492Events/Scp0492ConsumingCorpseEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Scp0492Events/Scp0492ConsumingCorpseEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Scp0492Events/Scp0492StartedConsumingCorpseEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Scp0492Events/Scp0492StartedConsumingCorpseEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Scp0492Events/Scp0492StartingConsumingCorpseEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Scp0492Events/Scp0492StartingConsumingCorpseEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Scp049Events/Scp049AttackedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Scp049Events/Scp049AttackedEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Scp049Events/Scp049AttackingEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Scp049Events/Scp049AttackingEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Scp049Events/Scp049ResurrectedBodyEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Scp049Events/Scp049ResurrectedBodyEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Scp049Events/Scp049ResurrectingBodyEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Scp049Events/Scp049ResurrectingBodyEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Scp049Events/Scp049SenseKilledTargetEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Scp049Events/Scp049SenseKilledTargetEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Scp049Events/Scp049SenseLostTargetEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Scp049Events/Scp049SenseLostTargetEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Scp049Events/Scp049StartingResurrectionEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Scp049Events/Scp049StartingResurrectionEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Scp049Events/Scp049UsedDoctorsCallEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Scp049Events/Scp049UsedDoctorsCallEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Scp049Events/Scp049UsedSenseEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Scp049Events/Scp049UsedSenseEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Scp049Events/Scp049UsingDoctorsCallEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Scp049Events/Scp049UsingDoctorsCallEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Scp049Events/Scp049UsingSenseEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Scp049Events/Scp049UsingSenseEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Scp079Events/Scp079BlackedOutRoomEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Scp079Events/Scp079BlackedOutRoomEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Scp079Events/Scp079BlackedOutZoneEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Scp079Events/Scp079BlackedOutZoneEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Scp079Events/Scp079BlackingOutRoomEventsArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Scp079Events/Scp079BlackingOutRoomEventsArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Scp079Events/Scp079BlackingOutZoneEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Scp079Events/Scp079BlackingOutZoneEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Scp079Events/Scp079CancelledRoomLockdownEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Scp079Events/Scp079CancelledRoomLockdownEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Scp079Events/Scp079CancellingRoomLockdownEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Scp079Events/Scp079CancellingRoomLockdownEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Scp079Events/Scp079ChangedCameraEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Scp079Events/Scp079ChangedCameraEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Scp079Events/Scp079ChangingCameraEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Scp079Events/Scp079ChangingCameraEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Scp079Events/Scp079GainedExperienceEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Scp079Events/Scp079GainedExperienceEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Scp079Events/Scp079GainingExperienceEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Scp079Events/Scp079GainingExperienceEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Scp079Events/Scp079LeveledUpEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Scp079Events/Scp079LeveledUpEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Scp079Events/Scp079LevelingUpEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Scp079Events/Scp079LevelingUpEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Scp079Events/Scp079LockedDoorEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Scp079Events/Scp079LockedDoorEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Scp079Events/Scp079LockedDownRoomEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Scp079Events/Scp079LockedDownRoomEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Scp079Events/Scp079LockingDoorEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Scp079Events/Scp079LockingDoorEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Scp079Events/Scp079LockingDownRoomEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Scp079Events/Scp079LockingDownRoomEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Scp079Events/Scp079PingedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Scp079Events/Scp079PingedEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Scp079Events/Scp079PingingEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Scp079Events/Scp079PingingEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Scp079Events/Scp079RecontainedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Scp079Events/Scp079RecontainedEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Scp079Events/Scp079RecontainingEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Scp079Events/Scp079RecontainingEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Scp079Events/Scp079UnlockedDoorEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Scp079Events/Scp079UnlockedDoorEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Scp079Events/Scp079UnlockingDoorEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Scp079Events/Scp079UnlockingDoorEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Scp079Events/Scp079UsedTeslaEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Scp079Events/Scp079UsedTeslaEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Scp079Events/Scp079UsingTeslaEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Scp079Events/Scp079UsingTeslaEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Scp096Events/Scp096AddedTargetEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Scp096Events/Scp096AddedTargetEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Scp096Events/Scp096AddingTargetEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Scp096Events/Scp096AddingTargetEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Scp096Events/Scp096ChangedStateEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Scp096Events/Scp096ChangedStateEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Scp096Events/Scp096ChangingStateEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Scp096Events/Scp096ChangingStateEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Scp096Events/Scp096ChargedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Scp096Events/Scp096ChargedEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Scp096Events/Scp096ChargingEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Scp096Events/Scp096ChargingEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Scp096Events/Scp096EnragedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Scp096Events/Scp096EnragedEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Scp096Events/Scp096EnragingEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Scp096Events/Scp096EnragingEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Scp096Events/Scp096PriedGateEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Scp096Events/Scp096PriedGateEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Scp096Events/Scp096PryingGateEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Scp096Events/Scp096PryingGateEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Scp096Events/Scp096StartCryingEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Scp096Events/Scp096StartCryingEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Scp096Events/Scp096StartedCryingEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Scp096Events/Scp096StartedCryingEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Scp096Events/Scp096TriedNotToCryEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Scp096Events/Scp096TriedNotToCryEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Scp096Events/Scp096TryingNotToCryEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Scp096Events/Scp096TryingNotToCryEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Scp106Events/Scp106ChangedStalkModeEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Scp106Events/Scp106ChangedStalkModeEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Scp106Events/Scp106ChangedSubmersionStatusEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Scp106Events/Scp106ChangedSubmersionStatusEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Scp106Events/Scp106ChangedVigorEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Scp106Events/Scp106ChangedVigorEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Scp106Events/Scp106ChangingStalkModeEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Scp106Events/Scp106ChangingStalkModeEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Scp106Events/Scp106ChangingSubmersionStatusEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Scp106Events/Scp106ChangingSubmersionStatusEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Scp106Events/Scp106ChangingVigorEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Scp106Events/Scp106ChangingVigorEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Scp106Events/Scp106TeleportedPlayerEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Scp106Events/Scp106TeleportedPlayerEvent.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Scp106Events/Scp106TeleportingPlayerEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Scp106Events/Scp106TeleportingPlayerEvent.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Scp106Events/Scp106UsedHunterAtlasEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Scp106Events/Scp106UsedHunterAtlasEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Scp106Events/Scp106UsingHunterAtlasEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Scp106Events/Scp106UsingHunterAtlasEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Scp127Events/Scp127GainExperienceEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Scp127Events/Scp127GainExperienceEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Scp127Events/Scp127GainingExperienceEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Scp127Events/Scp127GainingExperienceEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Scp127Events/Scp127LevelUpEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Scp127Events/Scp127LevelUpEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Scp127Events/Scp127LevellingUpEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Scp127Events/Scp127LevellingUpEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Scp127Events/Scp127TalkedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Scp127Events/Scp127TalkedEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Scp127Events/Scp127TalkingEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Scp127Events/Scp127TalkingEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Scp173Events/Scp173AddedObserverEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Scp173Events/Scp173AddedObserverEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Scp173Events/Scp173AddingObserverEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Scp173Events/Scp173AddingObserverEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Scp173Events/Scp173BreakneckSpeedChangedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Scp173Events/Scp173BreakneckSpeedChangedEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Scp173Events/Scp173BreakneckSpeedChangingEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Scp173Events/Scp173BreakneckSpeedChangingEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Scp173Events/Scp173CreatedTantrumEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Scp173Events/Scp173CreatedTantrumEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Scp173Events/Scp173CreatingTantrumEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Scp173Events/Scp173CreatingTantrumEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Scp173Events/Scp173PlayedSoundEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Scp173Events/Scp173PlayedSoundEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Scp173Events/Scp173PlayingSoundEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Scp173Events/Scp173PlayingSoundEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Scp173Events/Scp173RemovedObserverEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Scp173Events/Scp173RemovedObserverEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Scp173Events/Scp173RemovingObserverEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Scp173Events/Scp173RemovingObserverEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Scp173Events/Scp173SnappedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Scp173Events/Scp173SnappedEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Scp173Events/Scp173SnappingEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Scp173Events/Scp173SnappingEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Scp173Events/Scp173TeleportedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Scp173Events/Scp173TeleportedEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Scp173Events/Scp173TeleportingEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Scp173Events/Scp173TeleportingEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Scp3114Events/Scp3114DisguisedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Scp3114Events/Scp3114DisguisedEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Scp3114Events/Scp3114DisguisingEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Scp3114Events/Scp3114DisguisingEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Scp3114Events/Scp3114RevealedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Scp3114Events/Scp3114RevealedEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Scp3114Events/Scp3114RevealingEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Scp3114Events/Scp3114RevealingEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Scp3114Events/Scp3114StartedDanceEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Scp3114Events/Scp3114StartedDanceEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Scp3114Events/Scp3114StartingDanceEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Scp3114Events/Scp3114StartingDanceEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Scp3114Events/Scp3114StrangleAbortedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Scp3114Events/Scp3114StrangleAbortedEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Scp3114Events/Scp3114StrangleAbortingEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Scp3114Events/Scp3114StrangleAbortingEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Scp3114Events/Scp3114StrangleStartedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Scp3114Events/Scp3114StrangleStartedEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Scp3114Events/Scp3114StrangleStartingEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Scp3114Events/Scp3114StrangleStartingEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Scp914Events/Scp914ActivatedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Scp914Events/Scp914ActivatedEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Scp914Events/Scp914ActivatingEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Scp914Events/Scp914ActivatingEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Scp914Events/Scp914KnobChangedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Scp914Events/Scp914KnobChangedEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Scp914Events/Scp914KnobChangingEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Scp914Events/Scp914KnobChangingEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Scp914Events/Scp914ProcessedInventoryItemEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Scp914Events/Scp914ProcessedInventoryItemEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Scp914Events/Scp914ProcessedPickupEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Scp914Events/Scp914ProcessedPickupEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Scp914Events/Scp914ProcessedPlayerEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Scp914Events/Scp914ProcessedPlayerEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Scp914Events/Scp914ProcessingInventoryItemEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Scp914Events/Scp914ProcessingInventoryItemEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Scp914Events/Scp914ProcessingPickupEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Scp914Events/Scp914ProcessingPickupEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Scp914Events/Scp914ProcessingPlayerEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Scp914Events/Scp914ProcessingPlayerEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Scp939Events/Scp939AttackedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Scp939Events/Scp939AttackedEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Scp939Events/Scp939AttackingEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Scp939Events/Scp939AttackingEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Scp939Events/Scp939CreatedAmnesticCloudEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Scp939Events/Scp939CreatedAmnesticCloudEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Scp939Events/Scp939CreatingAmnesticCloudEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Scp939Events/Scp939CreatingAmnesticCloudEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Scp939Events/Scp939FocusedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Scp939Events/Scp939FocusedEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Scp939Events/Scp939LungedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Scp939Events/Scp939LungedEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Scp939Events/Scp939LungingEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Scp939Events/Scp939LungingEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Scp939Events/Scp939MimickedEnvironmentEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Scp939Events/Scp939MimickedEnvironmentEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/Scp939Events/Scp939MimickingEnvironmentEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/Scp939Events/Scp939MimickingEnvironmentEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/ScpEvents/ScpHumeShieldBrokenEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/ScpEvents/ScpHumeShieldBrokenEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/ServerEvents/AchievedMilestoneEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/ServerEvents/AchievedMilestoneEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/ServerEvents/AchievingMilestoneEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/ServerEvents/AchievingMilestoneEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/ServerEvents/BanIssuedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/ServerEvents/BanIssuedEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/ServerEvents/BanIssuingEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/ServerEvents/BanIssuingEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/ServerEvents/BanRevokedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/ServerEvents/BanRevokedEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/ServerEvents/BanRevokingEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/ServerEvents/BanRevokingEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/ServerEvents/BanUpdatedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/ServerEvents/BanUpdatedEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/ServerEvents/BanUpdatingEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/ServerEvents/BanUpdatingEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/ServerEvents/BlastDoorChangedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/ServerEvents/BlastDoorChangedEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/ServerEvents/BlastDoorChangingEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/ServerEvents/BlastDoorChangingEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/ServerEvents/CassieAnnouncedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/ServerEvents/CassieAnnouncedEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/ServerEvents/CassieAnnouncingEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/ServerEvents/CassieAnnouncingEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/ServerEvents/CassieQueuedScpTerminationEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/ServerEvents/CassieQueuedScpTerminationEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/ServerEvents/CassieQueuingScpTerminationEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/ServerEvents/CassieQueuingScpTerminationEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/ServerEvents/CheckpointDoorSequenceChangedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/ServerEvents/CheckpointDoorSequenceChangedEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/ServerEvents/CheckpointDoorSequenceChangingEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/ServerEvents/CheckpointDoorSequenceChangingEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/ServerEvents/CommandExecutedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/ServerEvents/CommandExecutedEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/ServerEvents/CommandExecutingEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/ServerEvents/CommandExecutingEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/ServerEvents/DeadmanSequenceActivatingEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/ServerEvents/DeadmanSequenceActivatingEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/ServerEvents/DoorDamagedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/ServerEvents/DoorDamagedEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/ServerEvents/DoorDamagingEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/ServerEvents/DoorDamagingEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/ServerEvents/DoorLockChangedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/ServerEvents/DoorLockChangedEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/ServerEvents/DoorRepairedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/ServerEvents/DoorRepairedEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/ServerEvents/DoorRepairingEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/ServerEvents/DoorRepairingEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/ServerEvents/ElevatorSequenceChangedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/ServerEvents/ElevatorSequenceChangedEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/ServerEvents/ExplosionSpawnedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/ServerEvents/ExplosionSpawnedEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/ServerEvents/ExplosionSpawningEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/ServerEvents/ExplosionSpawningEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/ServerEvents/GeneratorActivatedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/ServerEvents/GeneratorActivatedEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/ServerEvents/GeneratorActivatingEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/ServerEvents/GeneratorActivatingEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/ServerEvents/ItemSpawnedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/ServerEvents/ItemSpawnedEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/ServerEvents/ItemSpawningEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/ServerEvents/ItemSpawningEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/ServerEvents/LczDecontaminationAnnouncedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/ServerEvents/LczDecontaminationAnnouncedEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/ServerEvents/LczDecontaminationStartingEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/ServerEvents/LczDecontaminationStartingEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/ServerEvents/MapGeneratedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/ServerEvents/MapGeneratedEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/ServerEvents/MapGeneratingEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/ServerEvents/MapGeneratingEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/ServerEvents/ModifiedFactionInfluenceEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/ServerEvents/ModifiedFactionInfluenceEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/ServerEvents/ModifyingFactionInfluenceEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/ServerEvents/ModifyingFactionInfluenceEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/ServerEvents/PickupCreatedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/ServerEvents/PickupCreatedEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/ServerEvents/PickupDestroyedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/ServerEvents/PickupDestroyedEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/ServerEvents/ProjectileExplodedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/ServerEvents/ProjectileExplodedEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/ServerEvents/ProjectileExplodingEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/ServerEvents/ProjectileExplodingEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/ServerEvents/RoomColorChangedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/ServerEvents/RoomColorChangedEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/ServerEvents/RoomLightChangedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/ServerEvents/RoomLightChangedEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/ServerEvents/RoundEndedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/ServerEvents/RoundEndedEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/ServerEvents/RoundEndingConditionsCheckEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/ServerEvents/RoundEndingConditionsCheckEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/ServerEvents/RoundEndingEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/ServerEvents/RoundEndingEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/ServerEvents/RoundStartingEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/ServerEvents/RoundStartingEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/ServerEvents/SendingAdminChatEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/ServerEvents/SendingAdminChatEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/ServerEvents/SentAdminChatEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/ServerEvents/SentAdminChatEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/ServerEvents/WaveRespawnedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/ServerEvents/WaveRespawnedEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/ServerEvents/WaveRespawningEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/ServerEvents/WaveRespawningEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/ServerEvents/WaveTeamSelectedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/ServerEvents/WaveTeamSelectedEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/ServerEvents/WaveTeamSelectingEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/ServerEvents/WaveTeamSelectingEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/WarheadEvents/WarheadDetonatedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/WarheadEvents/WarheadDetonatedEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/WarheadEvents/WarheadDetonatingEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/WarheadEvents/WarheadDetonatingEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/WarheadEvents/WarheadStartedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/WarheadEvents/WarheadStartedEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/WarheadEvents/WarheadStartingEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/WarheadEvents/WarheadStartingEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/WarheadEvents/WarheadStoppedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/WarheadEvents/WarheadStoppedEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/Arguments/WarheadEvents/WarheadStoppingEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Arguments/WarheadEvents/WarheadStoppingEventArgs.cs -------------------------------------------------------------------------------- /LabApi/Events/CustomHandlers/CustomEventHandlers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/CustomHandlers/CustomEventHandlers.cs -------------------------------------------------------------------------------- /LabApi/Events/CustomHandlers/CustomHandlersManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/CustomHandlers/CustomHandlersManager.cs -------------------------------------------------------------------------------- /LabApi/Events/EventManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/EventManager.cs -------------------------------------------------------------------------------- /LabApi/Events/Handlers/ObjectiveEvents.EventHandlers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Handlers/ObjectiveEvents.EventHandlers.cs -------------------------------------------------------------------------------- /LabApi/Events/Handlers/PlayerEvents.EventHandlers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Handlers/PlayerEvents.EventHandlers.cs -------------------------------------------------------------------------------- /LabApi/Events/Handlers/Scp0492Events.EventHandlers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Handlers/Scp0492Events.EventHandlers.cs -------------------------------------------------------------------------------- /LabApi/Events/Handlers/Scp049Events.EventHandlers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Handlers/Scp049Events.EventHandlers.cs -------------------------------------------------------------------------------- /LabApi/Events/Handlers/Scp079Events.EventHandlers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Handlers/Scp079Events.EventHandlers.cs -------------------------------------------------------------------------------- /LabApi/Events/Handlers/Scp096Events.EventHandlers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Handlers/Scp096Events.EventHandlers.cs -------------------------------------------------------------------------------- /LabApi/Events/Handlers/Scp106Events.EventHandlers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Handlers/Scp106Events.EventHandlers.cs -------------------------------------------------------------------------------- /LabApi/Events/Handlers/Scp127Events.EventHandlers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Handlers/Scp127Events.EventHandlers.cs -------------------------------------------------------------------------------- /LabApi/Events/Handlers/Scp173Events.EventHandlers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Handlers/Scp173Events.EventHandlers.cs -------------------------------------------------------------------------------- /LabApi/Events/Handlers/Scp3114Events.EventHandlers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Handlers/Scp3114Events.EventHandlers.cs -------------------------------------------------------------------------------- /LabApi/Events/Handlers/Scp914Events.EventHandlers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Handlers/Scp914Events.EventHandlers.cs -------------------------------------------------------------------------------- /LabApi/Events/Handlers/Scp939Events.EventHandlers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Handlers/Scp939Events.EventHandlers.cs -------------------------------------------------------------------------------- /LabApi/Events/Handlers/ScpEvents.EventHandlers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Handlers/ScpEvents.EventHandlers.cs -------------------------------------------------------------------------------- /LabApi/Events/Handlers/ServerEvents.EventHandlers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Handlers/ServerEvents.EventHandlers.cs -------------------------------------------------------------------------------- /LabApi/Events/Handlers/WarheadEvents.EventHandlers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/Handlers/WarheadEvents.EventHandlers.cs -------------------------------------------------------------------------------- /LabApi/Events/LabEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/LabEventHandler.cs -------------------------------------------------------------------------------- /LabApi/Events/LabEventHandler{TEventArgs}.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Events/LabEventHandler{TEventArgs}.cs -------------------------------------------------------------------------------- /LabApi/Features/Audio/AudioTransmitter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/Audio/AudioTransmitter.cs -------------------------------------------------------------------------------- /LabApi/Features/Console/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/Console/Logger.cs -------------------------------------------------------------------------------- /LabApi/Features/Enums/CommandType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/Enums/CommandType.cs -------------------------------------------------------------------------------- /LabApi/Features/Enums/DoorName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/Enums/DoorName.cs -------------------------------------------------------------------------------- /LabApi/Features/Enums/PlayerSearchFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/Enums/PlayerSearchFlags.cs -------------------------------------------------------------------------------- /LabApi/Features/Enums/Scp079PingType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/Enums/Scp079PingType.cs -------------------------------------------------------------------------------- /LabApi/Features/Extensions/LinqExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/Extensions/LinqExtensions.cs -------------------------------------------------------------------------------- /LabApi/Features/Extensions/PriorityQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/Extensions/PriorityQueue.cs -------------------------------------------------------------------------------- /LabApi/Features/Extensions/PriorityQueuePool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/Extensions/PriorityQueuePool.cs -------------------------------------------------------------------------------- /LabApi/Features/Extensions/RoleExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/Extensions/RoleExtensions.cs -------------------------------------------------------------------------------- /LabApi/Features/Interfaces/IScp914ItemProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/Interfaces/IScp914ItemProcessor.cs -------------------------------------------------------------------------------- /LabApi/Features/LabApiProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/LabApiProperties.cs -------------------------------------------------------------------------------- /LabApi/Features/Permissions/IPermissionsProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/Permissions/IPermissionsProvider.cs -------------------------------------------------------------------------------- /LabApi/Features/Permissions/PermissionsExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/Permissions/PermissionsExtensions.cs -------------------------------------------------------------------------------- /LabApi/Features/Permissions/PermissionsManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/Permissions/PermissionsManager.cs -------------------------------------------------------------------------------- /LabApi/Features/Permissions/Providers/DefaultPermissionsProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/Permissions/Providers/DefaultPermissionsProvider.cs -------------------------------------------------------------------------------- /LabApi/Features/Permissions/Providers/PermissionGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/Permissions/Providers/PermissionGroup.cs -------------------------------------------------------------------------------- /LabApi/Features/Stores/CustomDataStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/Stores/CustomDataStore.cs -------------------------------------------------------------------------------- /LabApi/Features/Stores/CustomDataStoreManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/Stores/CustomDataStoreManager.cs -------------------------------------------------------------------------------- /LabApi/Features/Stores/CustomDataStore{TStore}.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/Stores/CustomDataStore{TStore}.cs -------------------------------------------------------------------------------- /LabApi/Features/Wrappers/AdminToys/AdminToy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/Wrappers/AdminToys/AdminToy.cs -------------------------------------------------------------------------------- /LabApi/Features/Wrappers/AdminToys/CameraToy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/Wrappers/AdminToys/CameraToy.cs -------------------------------------------------------------------------------- /LabApi/Features/Wrappers/AdminToys/CapybaraToy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/Wrappers/AdminToys/CapybaraToy.cs -------------------------------------------------------------------------------- /LabApi/Features/Wrappers/AdminToys/InteractableToy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/Wrappers/AdminToys/InteractableToy.cs -------------------------------------------------------------------------------- /LabApi/Features/Wrappers/AdminToys/LightSourceToy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/Wrappers/AdminToys/LightSourceToy.cs -------------------------------------------------------------------------------- /LabApi/Features/Wrappers/AdminToys/PrimitiveObjectToy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/Wrappers/AdminToys/PrimitiveObjectToy.cs -------------------------------------------------------------------------------- /LabApi/Features/Wrappers/AdminToys/ShootingTargetToy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/Wrappers/AdminToys/ShootingTargetToy.cs -------------------------------------------------------------------------------- /LabApi/Features/Wrappers/AdminToys/SpawnableCullingParent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/Wrappers/AdminToys/SpawnableCullingParent.cs -------------------------------------------------------------------------------- /LabApi/Features/Wrappers/AdminToys/SpeakerToy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/Wrappers/AdminToys/SpeakerToy.cs -------------------------------------------------------------------------------- /LabApi/Features/Wrappers/AdminToys/TextToy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/Wrappers/AdminToys/TextToy.cs -------------------------------------------------------------------------------- /LabApi/Features/Wrappers/AdminToys/WaypointToy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/Wrappers/AdminToys/WaypointToy.cs -------------------------------------------------------------------------------- /LabApi/Features/Wrappers/Facility/Cassie.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/Wrappers/Facility/Cassie.cs -------------------------------------------------------------------------------- /LabApi/Features/Wrappers/Facility/Decontamination.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/Wrappers/Facility/Decontamination.cs -------------------------------------------------------------------------------- /LabApi/Features/Wrappers/Facility/Doors/BreakableDoor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/Wrappers/Facility/Doors/BreakableDoor.cs -------------------------------------------------------------------------------- /LabApi/Features/Wrappers/Facility/Doors/BulkheadDoor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/Wrappers/Facility/Doors/BulkheadDoor.cs -------------------------------------------------------------------------------- /LabApi/Features/Wrappers/Facility/Doors/CheckpointDoor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/Wrappers/Facility/Doors/CheckpointDoor.cs -------------------------------------------------------------------------------- /LabApi/Features/Wrappers/Facility/Doors/Door.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/Wrappers/Facility/Doors/Door.cs -------------------------------------------------------------------------------- /LabApi/Features/Wrappers/Facility/Doors/DummyDoor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/Wrappers/Facility/Doors/DummyDoor.cs -------------------------------------------------------------------------------- /LabApi/Features/Wrappers/Facility/Doors/ElevatorDoor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/Wrappers/Facility/Doors/ElevatorDoor.cs -------------------------------------------------------------------------------- /LabApi/Features/Wrappers/Facility/Doors/Extensions/DoorCrusher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/Wrappers/Facility/Doors/Extensions/DoorCrusher.cs -------------------------------------------------------------------------------- /LabApi/Features/Wrappers/Facility/Doors/Gate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/Wrappers/Facility/Doors/Gate.cs -------------------------------------------------------------------------------- /LabApi/Features/Wrappers/Facility/Doors/NonInteractableDoor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/Wrappers/Facility/Doors/NonInteractableDoor.cs -------------------------------------------------------------------------------- /LabApi/Features/Wrappers/Facility/Doors/Timed173Gate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/Wrappers/Facility/Doors/Timed173Gate.cs -------------------------------------------------------------------------------- /LabApi/Features/Wrappers/Facility/Elevator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/Wrappers/Facility/Elevator.cs -------------------------------------------------------------------------------- /LabApi/Features/Wrappers/Facility/Hazards/AmnesticCloudHazard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/Wrappers/Facility/Hazards/AmnesticCloudHazard.cs -------------------------------------------------------------------------------- /LabApi/Features/Wrappers/Facility/Hazards/DecayableHazard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/Wrappers/Facility/Hazards/DecayableHazard.cs -------------------------------------------------------------------------------- /LabApi/Features/Wrappers/Facility/Hazards/Hazard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/Wrappers/Facility/Hazards/Hazard.cs -------------------------------------------------------------------------------- /LabApi/Features/Wrappers/Facility/Hazards/SinkholeHazard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/Wrappers/Facility/Hazards/SinkholeHazard.cs -------------------------------------------------------------------------------- /LabApi/Features/Wrappers/Facility/Hazards/TantrumHazard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/Wrappers/Facility/Hazards/TantrumHazard.cs -------------------------------------------------------------------------------- /LabApi/Features/Wrappers/Facility/Hazards/Tesla.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/Wrappers/Facility/Hazards/Tesla.cs -------------------------------------------------------------------------------- /LabApi/Features/Wrappers/Facility/Map.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/Wrappers/Facility/Map.cs -------------------------------------------------------------------------------- /LabApi/Features/Wrappers/Facility/Respawning/RespawnWaves.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/Wrappers/Facility/Respawning/RespawnWaves.cs -------------------------------------------------------------------------------- /LabApi/Features/Wrappers/Facility/Respawning/Waves/ChaosWave.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/Wrappers/Facility/Respawning/Waves/ChaosWave.cs -------------------------------------------------------------------------------- /LabApi/Features/Wrappers/Facility/Respawning/Waves/MiniChaosWave.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/Wrappers/Facility/Respawning/Waves/MiniChaosWave.cs -------------------------------------------------------------------------------- /LabApi/Features/Wrappers/Facility/Respawning/Waves/MiniMtfWave.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/Wrappers/Facility/Respawning/Waves/MiniMtfWave.cs -------------------------------------------------------------------------------- /LabApi/Features/Wrappers/Facility/Respawning/Waves/MiniRespawnWave.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/Wrappers/Facility/Respawning/Waves/MiniRespawnWave.cs -------------------------------------------------------------------------------- /LabApi/Features/Wrappers/Facility/Respawning/Waves/MtfWave.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/Wrappers/Facility/Respawning/Waves/MtfWave.cs -------------------------------------------------------------------------------- /LabApi/Features/Wrappers/Facility/Respawning/Waves/RespawnWave.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/Wrappers/Facility/Respawning/Waves/RespawnWave.cs -------------------------------------------------------------------------------- /LabApi/Features/Wrappers/Facility/Rooms/Camera.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/Wrappers/Facility/Rooms/Camera.cs -------------------------------------------------------------------------------- /LabApi/Features/Wrappers/Facility/Rooms/LightsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/Wrappers/Facility/Rooms/LightsController.cs -------------------------------------------------------------------------------- /LabApi/Features/Wrappers/Facility/Rooms/PocketDimension/PocketDimension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/Wrappers/Facility/Rooms/PocketDimension/PocketDimension.cs -------------------------------------------------------------------------------- /LabApi/Features/Wrappers/Facility/Rooms/PocketDimension/PocketItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/Wrappers/Facility/Rooms/PocketDimension/PocketItem.cs -------------------------------------------------------------------------------- /LabApi/Features/Wrappers/Facility/Rooms/PocketDimension/PocketTeleport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/Wrappers/Facility/Rooms/PocketDimension/PocketTeleport.cs -------------------------------------------------------------------------------- /LabApi/Features/Wrappers/Facility/Rooms/Room.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/Wrappers/Facility/Rooms/Room.cs -------------------------------------------------------------------------------- /LabApi/Features/Wrappers/Facility/Rooms/Scp914/BaseGameItemProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/Wrappers/Facility/Rooms/Scp914/BaseGameItemProcessor.cs -------------------------------------------------------------------------------- /LabApi/Features/Wrappers/Facility/Rooms/Scp914/ItemProcessorAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/Wrappers/Facility/Rooms/Scp914/ItemProcessorAdapter.cs -------------------------------------------------------------------------------- /LabApi/Features/Wrappers/Facility/Rooms/Scp914/Scp914.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/Wrappers/Facility/Rooms/Scp914/Scp914.cs -------------------------------------------------------------------------------- /LabApi/Features/Wrappers/Facility/Round.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/Wrappers/Facility/Round.cs -------------------------------------------------------------------------------- /LabApi/Features/Wrappers/Facility/Structures/ExperimentalWeaponLocker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/Wrappers/Facility/Structures/ExperimentalWeaponLocker.cs -------------------------------------------------------------------------------- /LabApi/Features/Wrappers/Facility/Structures/Generator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/Wrappers/Facility/Structures/Generator.cs -------------------------------------------------------------------------------- /LabApi/Features/Wrappers/Facility/Structures/LargeLocker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/Wrappers/Facility/Structures/LargeLocker.cs -------------------------------------------------------------------------------- /LabApi/Features/Wrappers/Facility/Structures/Locker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/Wrappers/Facility/Structures/Locker.cs -------------------------------------------------------------------------------- /LabApi/Features/Wrappers/Facility/Structures/LockerChamber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/Wrappers/Facility/Structures/LockerChamber.cs -------------------------------------------------------------------------------- /LabApi/Features/Wrappers/Facility/Structures/MicroPedestal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/Wrappers/Facility/Structures/MicroPedestal.cs -------------------------------------------------------------------------------- /LabApi/Features/Wrappers/Facility/Structures/PedestalLocker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/Wrappers/Facility/Structures/PedestalLocker.cs -------------------------------------------------------------------------------- /LabApi/Features/Wrappers/Facility/Structures/RifleRackLocker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/Wrappers/Facility/Structures/RifleRackLocker.cs -------------------------------------------------------------------------------- /LabApi/Features/Wrappers/Facility/Structures/StandardLocker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/Wrappers/Facility/Structures/StandardLocker.cs -------------------------------------------------------------------------------- /LabApi/Features/Wrappers/Facility/Structures/Structure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/Wrappers/Facility/Structures/Structure.cs -------------------------------------------------------------------------------- /LabApi/Features/Wrappers/Facility/Structures/WallCabinet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/Wrappers/Facility/Structures/WallCabinet.cs -------------------------------------------------------------------------------- /LabApi/Features/Wrappers/Facility/Structures/Window.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/Wrappers/Facility/Structures/Window.cs -------------------------------------------------------------------------------- /LabApi/Features/Wrappers/Facility/Structures/Workstation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/Wrappers/Facility/Structures/Workstation.cs -------------------------------------------------------------------------------- /LabApi/Features/Wrappers/Facility/Warhead.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/Wrappers/Facility/Warhead.cs -------------------------------------------------------------------------------- /LabApi/Features/Wrappers/Items/AmmoItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/Wrappers/Items/AmmoItem.cs -------------------------------------------------------------------------------- /LabApi/Features/Wrappers/Items/BodyArmorItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/Wrappers/Items/BodyArmorItem.cs -------------------------------------------------------------------------------- /LabApi/Features/Wrappers/Items/CoinItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/Wrappers/Items/CoinItem.cs -------------------------------------------------------------------------------- /LabApi/Features/Wrappers/Items/Firearm/FirearmItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/Wrappers/Items/Firearm/FirearmItem.cs -------------------------------------------------------------------------------- /LabApi/Features/Wrappers/Items/Firearm/SpecialFirearms/ParticleDisruptorItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/Wrappers/Items/Firearm/SpecialFirearms/ParticleDisruptorItem.cs -------------------------------------------------------------------------------- /LabApi/Features/Wrappers/Items/Firearm/SpecialFirearms/RevolverFirearm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/Wrappers/Items/Firearm/SpecialFirearms/RevolverFirearm.cs -------------------------------------------------------------------------------- /LabApi/Features/Wrappers/Items/Firearm/SpecialFirearms/Scp127Firearm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/Wrappers/Items/Firearm/SpecialFirearms/Scp127Firearm.cs -------------------------------------------------------------------------------- /LabApi/Features/Wrappers/Items/Firearm/SpecialFirearms/ShotgunFirearm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/Wrappers/Items/Firearm/SpecialFirearms/ShotgunFirearm.cs -------------------------------------------------------------------------------- /LabApi/Features/Wrappers/Items/Item.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/Wrappers/Items/Item.cs -------------------------------------------------------------------------------- /LabApi/Features/Wrappers/Items/JailbirdItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/Wrappers/Items/JailbirdItem.cs -------------------------------------------------------------------------------- /LabApi/Features/Wrappers/Items/KeycardItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/Wrappers/Items/KeycardItem.cs -------------------------------------------------------------------------------- /LabApi/Features/Wrappers/Items/Light/FlashlightItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/Wrappers/Items/Light/FlashlightItem.cs -------------------------------------------------------------------------------- /LabApi/Features/Wrappers/Items/Light/LanternItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/Wrappers/Items/Light/LanternItem.cs -------------------------------------------------------------------------------- /LabApi/Features/Wrappers/Items/Light/LightItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/Wrappers/Items/Light/LightItem.cs -------------------------------------------------------------------------------- /LabApi/Features/Wrappers/Items/MicroHIDItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/Wrappers/Items/MicroHIDItem.cs -------------------------------------------------------------------------------- /LabApi/Features/Wrappers/Items/RadioItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/Wrappers/Items/RadioItem.cs -------------------------------------------------------------------------------- /LabApi/Features/Wrappers/Items/ThrowableItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/Wrappers/Items/ThrowableItem.cs -------------------------------------------------------------------------------- /LabApi/Features/Wrappers/Items/Usable/Consumable/AdrenalineItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/Wrappers/Items/Usable/Consumable/AdrenalineItem.cs -------------------------------------------------------------------------------- /LabApi/Features/Wrappers/Items/Usable/Consumable/AntiScp207Item.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/Wrappers/Items/Usable/Consumable/AntiScp207Item.cs -------------------------------------------------------------------------------- /LabApi/Features/Wrappers/Items/Usable/Consumable/ConsumableItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/Wrappers/Items/Usable/Consumable/ConsumableItem.cs -------------------------------------------------------------------------------- /LabApi/Features/Wrappers/Items/Usable/Consumable/MedkitItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/Wrappers/Items/Usable/Consumable/MedkitItem.cs -------------------------------------------------------------------------------- /LabApi/Features/Wrappers/Items/Usable/Consumable/PainkillersItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/Wrappers/Items/Usable/Consumable/PainkillersItem.cs -------------------------------------------------------------------------------- /LabApi/Features/Wrappers/Items/Usable/Consumable/Scp1853Item.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/Wrappers/Items/Usable/Consumable/Scp1853Item.cs -------------------------------------------------------------------------------- /LabApi/Features/Wrappers/Items/Usable/Consumable/Scp207Item.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/Wrappers/Items/Usable/Consumable/Scp207Item.cs -------------------------------------------------------------------------------- /LabApi/Features/Wrappers/Items/Usable/Consumable/Scp500Item.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/Wrappers/Items/Usable/Consumable/Scp500Item.cs -------------------------------------------------------------------------------- /LabApi/Features/Wrappers/Items/Usable/Scp1344Item.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/Wrappers/Items/Usable/Scp1344Item.cs -------------------------------------------------------------------------------- /LabApi/Features/Wrappers/Items/Usable/Scp1576Item.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/Wrappers/Items/Usable/Scp1576Item.cs -------------------------------------------------------------------------------- /LabApi/Features/Wrappers/Items/Usable/Scp244Item.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/Wrappers/Items/Usable/Scp244Item.cs -------------------------------------------------------------------------------- /LabApi/Features/Wrappers/Items/Usable/Scp268Item.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/Wrappers/Items/Usable/Scp268Item.cs -------------------------------------------------------------------------------- /LabApi/Features/Wrappers/Items/Usable/Scp330Item.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/Wrappers/Items/Usable/Scp330Item.cs -------------------------------------------------------------------------------- /LabApi/Features/Wrappers/Items/Usable/UsableItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/Wrappers/Items/Usable/UsableItem.cs -------------------------------------------------------------------------------- /LabApi/Features/Wrappers/Pickups/AmmoPickup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/Wrappers/Pickups/AmmoPickup.cs -------------------------------------------------------------------------------- /LabApi/Features/Wrappers/Pickups/BodyArmorPickup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/Wrappers/Pickups/BodyArmorPickup.cs -------------------------------------------------------------------------------- /LabApi/Features/Wrappers/Pickups/FirearmPickup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/Wrappers/Pickups/FirearmPickup.cs -------------------------------------------------------------------------------- /LabApi/Features/Wrappers/Pickups/JailbirdPickup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/Wrappers/Pickups/JailbirdPickup.cs -------------------------------------------------------------------------------- /LabApi/Features/Wrappers/Pickups/KeycardPickup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/Wrappers/Pickups/KeycardPickup.cs -------------------------------------------------------------------------------- /LabApi/Features/Wrappers/Pickups/MicroHIDPickup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/Wrappers/Pickups/MicroHIDPickup.cs -------------------------------------------------------------------------------- /LabApi/Features/Wrappers/Pickups/Pickup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/Wrappers/Pickups/Pickup.cs -------------------------------------------------------------------------------- /LabApi/Features/Wrappers/Pickups/Projectiles/Grenades/ExplosiveGrenadeProjectile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/Wrappers/Pickups/Projectiles/Grenades/ExplosiveGrenadeProjectile.cs -------------------------------------------------------------------------------- /LabApi/Features/Wrappers/Pickups/Projectiles/Grenades/FlashbangProjectile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/Wrappers/Pickups/Projectiles/Grenades/FlashbangProjectile.cs -------------------------------------------------------------------------------- /LabApi/Features/Wrappers/Pickups/Projectiles/Grenades/Scp018Projectile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/Wrappers/Pickups/Projectiles/Grenades/Scp018Projectile.cs -------------------------------------------------------------------------------- /LabApi/Features/Wrappers/Pickups/Projectiles/Grenades/Scp2176Projectile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/Wrappers/Pickups/Projectiles/Grenades/Scp2176Projectile.cs -------------------------------------------------------------------------------- /LabApi/Features/Wrappers/Pickups/Projectiles/Grenades/TimedGrenadeProjectile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/Wrappers/Pickups/Projectiles/Grenades/TimedGrenadeProjectile.cs -------------------------------------------------------------------------------- /LabApi/Features/Wrappers/Pickups/Projectiles/Projectile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/Wrappers/Pickups/Projectiles/Projectile.cs -------------------------------------------------------------------------------- /LabApi/Features/Wrappers/Pickups/RadioPickup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/Wrappers/Pickups/RadioPickup.cs -------------------------------------------------------------------------------- /LabApi/Features/Wrappers/Pickups/Scp1576Pickup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/Wrappers/Pickups/Scp1576Pickup.cs -------------------------------------------------------------------------------- /LabApi/Features/Wrappers/Pickups/Scp244Pickup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/Wrappers/Pickups/Scp244Pickup.cs -------------------------------------------------------------------------------- /LabApi/Features/Wrappers/Pickups/Scp330Pickup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/Wrappers/Pickups/Scp330Pickup.cs -------------------------------------------------------------------------------- /LabApi/Features/Wrappers/Pickups/TimedGrenadePickup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/Wrappers/Pickups/TimedGrenadePickup.cs -------------------------------------------------------------------------------- /LabApi/Features/Wrappers/Players/Player.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/Wrappers/Players/Player.cs -------------------------------------------------------------------------------- /LabApi/Features/Wrappers/Players/Ragdoll.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/Wrappers/Players/Ragdoll.cs -------------------------------------------------------------------------------- /LabApi/Features/Wrappers/Server/ReservedSlots.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/Wrappers/Server/ReservedSlots.cs -------------------------------------------------------------------------------- /LabApi/Features/Wrappers/Server/Server.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/Wrappers/Server/Server.cs -------------------------------------------------------------------------------- /LabApi/Features/Wrappers/Server/Whitelist.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Features/Wrappers/Server/Whitelist.cs -------------------------------------------------------------------------------- /LabApi/LabApi.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/LabApi.csproj -------------------------------------------------------------------------------- /LabApi/LabApi.csproj.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/LabApi.csproj.DotSettings -------------------------------------------------------------------------------- /LabApi/Loader/CommandLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Loader/CommandLoader.cs -------------------------------------------------------------------------------- /LabApi/Loader/ConfigurationLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Loader/ConfigurationLoader.cs -------------------------------------------------------------------------------- /LabApi/Loader/Constants/Priority.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Loader/Constants/Priority.cs -------------------------------------------------------------------------------- /LabApi/Loader/Features/Commands/Extensions/CommandExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Loader/Features/Commands/Extensions/CommandExtensions.cs -------------------------------------------------------------------------------- /LabApi/Loader/Features/Commands/LabApiParentCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Loader/Features/Commands/LabApiParentCommand.cs -------------------------------------------------------------------------------- /LabApi/Loader/Features/Commands/PluginPermissionsCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Loader/Features/Commands/PluginPermissionsCommand.cs -------------------------------------------------------------------------------- /LabApi/Loader/Features/Commands/Reload/ConfigsCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Loader/Features/Commands/Reload/ConfigsCommand.cs -------------------------------------------------------------------------------- /LabApi/Loader/Features/Commands/Reload/ReloadParentCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Loader/Features/Commands/Reload/ReloadParentCommand.cs -------------------------------------------------------------------------------- /LabApi/Loader/Features/Configuration/LabApiConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Loader/Features/Configuration/LabApiConfig.cs -------------------------------------------------------------------------------- /LabApi/Loader/Features/Misc/AssemblyUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Loader/Features/Misc/AssemblyUtils.cs -------------------------------------------------------------------------------- /LabApi/Loader/Features/Paths/PathManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Loader/Features/Paths/PathManager.cs -------------------------------------------------------------------------------- /LabApi/Loader/Features/Plugins/Configuration/Properties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Loader/Features/Plugins/Configuration/Properties.cs -------------------------------------------------------------------------------- /LabApi/Loader/Features/Plugins/Enums/LoadPriority.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Loader/Features/Plugins/Enums/LoadPriority.cs -------------------------------------------------------------------------------- /LabApi/Loader/Features/Plugins/Enums/OptionalBoolean.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Loader/Features/Plugins/Enums/OptionalBoolean.cs -------------------------------------------------------------------------------- /LabApi/Loader/Features/Plugins/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Loader/Features/Plugins/Plugin.cs -------------------------------------------------------------------------------- /LabApi/Loader/Features/Plugins/Plugin{TConfig}.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Loader/Features/Plugins/Plugin{TConfig}.cs -------------------------------------------------------------------------------- /LabApi/Loader/Features/Yaml/CustomConverters/CustomColor32Converter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Loader/Features/Yaml/CustomConverters/CustomColor32Converter.cs -------------------------------------------------------------------------------- /LabApi/Loader/Features/Yaml/CustomConverters/CustomColorConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Loader/Features/Yaml/CustomConverters/CustomColorConverter.cs -------------------------------------------------------------------------------- /LabApi/Loader/Features/Yaml/CustomConverters/CustomQuaternionConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Loader/Features/Yaml/CustomConverters/CustomQuaternionConverter.cs -------------------------------------------------------------------------------- /LabApi/Loader/Features/Yaml/CustomConverters/CustomVectorConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Loader/Features/Yaml/CustomConverters/CustomVectorConverter.cs -------------------------------------------------------------------------------- /LabApi/Loader/Features/Yaml/Extensions/YamlMappingExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Loader/Features/Yaml/Extensions/YamlMappingExtensions.cs -------------------------------------------------------------------------------- /LabApi/Loader/Features/Yaml/YamlConfigParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Loader/Features/Yaml/YamlConfigParser.cs -------------------------------------------------------------------------------- /LabApi/Loader/PluginLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/Loader/PluginLoader.cs -------------------------------------------------------------------------------- /LabApi/README.md: -------------------------------------------------------------------------------- 1 | C:/Users/jesusqc/RiderProjects/LabAPI-Internal/.github/README.md -------------------------------------------------------------------------------- /LabApi/stylecop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/LabApi/stylecop.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/README.md -------------------------------------------------------------------------------- /StyleCopAnalyzers.ruleset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/northwood-studios/LabAPI/HEAD/StyleCopAnalyzers.ruleset --------------------------------------------------------------------------------