Skip to content

Commit

Permalink
Start
Browse files Browse the repository at this point in the history
  • Loading branch information
FireNameFN committed Dec 19, 2024
1 parent 65357bb commit 6ab57a5
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 0 deletions.
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 Content.Shared/_CorvaxNext/TurretControl/TurretControlSystem.cs
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)
{

}
}
Original file line number Diff line number Diff line change
Expand Up @@ -185,6 +185,7 @@
- type: NpcFactionMember
factions:
- NanoTrasen
- type: TurretControl # Corvax-Next-TurretControl

- type: entity
parent: BaseWeaponTurret
Expand Down

0 comments on commit 6ab57a5

Please sign in to comment.