forked from Goob-Station/Goob-Station
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
whateverusername0
committed
Jun 22, 2024
1 parent
1ba8b31
commit 6869c23
Showing
5 changed files
with
34 additions
and
8 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
10 changes: 10 additions & 0 deletions
10
Content.Shared/Goobstation/Cult/RuneCaster/RuneCasterDoAfterEvent.cs
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 |
---|---|---|
@@ -1,9 +1,19 @@ | ||
using Content.Shared.DoAfter; | ||
using Robust.Shared.Map; | ||
using Robust.Shared.Serialization; | ||
|
||
namespace Content.Shared.Goobstation.Cult.RuneCaster; | ||
|
||
[Serializable, NetSerializable] | ||
public sealed partial class RuneCasterDoAfterEvent : SimpleDoAfterEvent | ||
{ | ||
/// <summary> | ||
/// Location that the user clicked outside of their interaction range. | ||
/// </summary> | ||
public EntityCoordinates ClickLocation { get; } | ||
|
||
public RuneCasterDoAfterEvent(EntityCoordinates clickLocation) : base() | ||
{ | ||
ClickLocation = clickLocation; | ||
} | ||
} |
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