Legally distinct gravity gun (#8114)
This commit is contained in:
25
Content.Shared/Weapons/Ranged/SharedTetherGunSystem.cs
Normal file
25
Content.Shared/Weapons/Ranged/SharedTetherGunSystem.cs
Normal file
@@ -0,0 +1,25 @@
|
||||
using Robust.Shared.Map;
|
||||
using Robust.Shared.Serialization;
|
||||
|
||||
namespace Content.Shared.Weapons.Ranged;
|
||||
|
||||
public abstract class SharedTetherGunSystem : EntitySystem
|
||||
{
|
||||
public const string CommandName = "tethergun";
|
||||
}
|
||||
|
||||
[Serializable, NetSerializable]
|
||||
public sealed class StartTetherEvent : EntityEventArgs
|
||||
{
|
||||
public EntityUid Entity;
|
||||
public MapCoordinates Coordinates;
|
||||
}
|
||||
|
||||
[Serializable, NetSerializable]
|
||||
public sealed class StopTetherEvent : EntityEventArgs {}
|
||||
|
||||
[Serializable, NetSerializable]
|
||||
public sealed class TetherMoveEvent : EntityEventArgs
|
||||
{
|
||||
public MapCoordinates Coordinates;
|
||||
}
|
||||
Reference in New Issue
Block a user