-
Notifications
You must be signed in to change notification settings - Fork 177
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Halloween 2024] Halloween Changes for 8.X (#2784)
* halloween * update required SL version
- Loading branch information
Showing
10 changed files
with
143 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
// ----------------------------------------------------------------------- | ||
// <copyright file="PrismaticCloudHazard.cs" company="Exiled Team"> | ||
// Copyright (c) Exiled Team. All rights reserved. | ||
// Licensed under the CC BY-SA 3.0 license. | ||
// </copyright> | ||
// ----------------------------------------------------------------------- | ||
|
||
namespace Exiled.API.Features.Hazards | ||
{ | ||
using global::Hazards; | ||
using RelativePositioning; | ||
|
||
/// <summary> | ||
/// A wrapper for <see cref="PrismaticCloudHazard"/>. | ||
/// </summary> | ||
public class PrismaticCloudHazard : TemporaryHazard | ||
{ | ||
/// <summary> | ||
/// Initializes a new instance of the <see cref="PrismaticCloudHazard"/> class. | ||
/// </summary> | ||
/// <param name="hazard">The <see cref="PrismaticCloudHazard"/> instance.</param> | ||
public PrismaticCloudHazard(PrismaticCloud hazard) | ||
Check failure on line 22 in Exiled.API/Features/Hazards/PrismaticCloudHazard.cs GitHub Actions / push
Check failure on line 22 in Exiled.API/Features/Hazards/PrismaticCloudHazard.cs GitHub Actions / push
|
||
: base(hazard) | ||
{ | ||
Base = hazard; | ||
} | ||
|
||
/// <summary> | ||
/// Gets the <see cref="PrismaticCloudHazard"/>. | ||
/// </summary> | ||
public new PrismaticCloud Base { get; } | ||
Check failure on line 31 in Exiled.API/Features/Hazards/PrismaticCloudHazard.cs GitHub Actions / push
Check failure on line 31 in Exiled.API/Features/Hazards/PrismaticCloudHazard.cs GitHub Actions / push
|
||
|
||
/// <summary> | ||
/// Gets or sets the synced position. | ||
/// </summary> | ||
public RelativePosition SynchronisedPosition | ||
{ | ||
get => Base.SynchronizedPosition; | ||
set => Base.SynchronizedPosition = value; | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters