Moving Zombie Components to Shared (#39791)
* Moving Comps to Shared * Requested Changes
This commit is contained in:
parent
228577676c
commit
b277b5082d
|
|
@ -1,8 +0,0 @@
|
|||
namespace Content.Server.Zombies
|
||||
{
|
||||
[RegisterComponent]
|
||||
public sealed partial class ZombifyOnDeathComponent : Component
|
||||
{
|
||||
//this is not the component you are looking for
|
||||
}
|
||||
}
|
||||
|
|
@ -1,9 +1,11 @@
|
|||
namespace Content.Server.Zombies;
|
||||
using Robust.Shared.GameStates;
|
||||
|
||||
namespace Content.Shared.Zombies;
|
||||
|
||||
/// <summary>
|
||||
/// Entities with this component cannot be zombified.
|
||||
/// </summary>
|
||||
[RegisterComponent]
|
||||
[RegisterComponent, NetworkedComponent]
|
||||
public sealed partial class ZombieImmuneComponent : Component
|
||||
{
|
||||
//still no
|
||||
|
|
@ -0,0 +1,12 @@
|
|||
using Robust.Shared.GameStates;
|
||||
|
||||
namespace Content.Shared.Zombies;
|
||||
|
||||
/// <summary>
|
||||
/// Entities with this component zombify on death.
|
||||
/// </summary>
|
||||
[RegisterComponent, NetworkedComponent]
|
||||
public sealed partial class ZombifyOnDeathComponent : Component
|
||||
{
|
||||
//this is not the component you are looking for
|
||||
}
|
||||
Loading…
Reference in New Issue