Moves cloning comp & cloning event to shared (#21253)

This commit is contained in:
keronshb
2023-10-28 09:47:42 -04:00
committed by GitHub
parent 3319774f62
commit 17f3fc1287
5 changed files with 143 additions and 143 deletions

View File

@@ -373,22 +373,4 @@ namespace Content.Server.Cloning
ClonesWaitingForMind.Clear();
}
}
/// <summary>
/// Raised after a new mob got spawned when cloning a humanoid
/// </summary>
[ByRefEvent]
public struct CloningEvent
{
public bool NameHandled = false;
public readonly EntityUid Source;
public readonly EntityUid Target;
public CloningEvent(EntityUid source, EntityUid target)
{
Source = source;
Target = target;
}
}
}