forked from space-syndicate/space-station-14
-
Notifications
You must be signed in to change notification settings - Fork 65
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
1 parent
65357bb
commit 6ab57a5
Showing
3 changed files
with
21 additions
and
0 deletions.
There are no files selected for viewing
4 changes: 4 additions & 0 deletions
4
Content.Shared/_CorvaxNext/TurretControl/TurretControlComponent.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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
namespace Content.Shared._CorvaxNext.TurretControl; | ||
|
||
[RegisterComponent] | ||
public sealed partial class TurretControlComponent : Component; |
16 changes: 16 additions & 0 deletions
16
Content.Shared/_CorvaxNext/TurretControl/TurretControlSystem.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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
using Content.Shared.Verbs; | ||
|
||
namespace Content.Shared._CorvaxNext.TurretControl; | ||
|
||
public sealed class TurretControlSystem : EntitySystem | ||
{ | ||
public override void Initialize() | ||
{ | ||
SubscribeLocalEvent<TurretControlComponent, GetVerbsEvent<Verb>>(OnGetVerbs); | ||
} | ||
|
||
private void OnGetVerbs(Entity<TurretControlComponent> entity, ref GetVerbsEvent<Verb> e) | ||
{ | ||
|
||
} | ||
} |
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