mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-01 17:47:24 +02:00
Co-authored-by: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Co-authored-by: metalgearsloth <comedian_vs_clown@hotmail.com>
18 lines
449 B
C#
18 lines
449 B
C#
namespace Robust.Shared.GameObjects
|
|
{
|
|
public sealed class CollisionChangeMessage : EntityEventArgs
|
|
{
|
|
public PhysicsComponent Body { get; }
|
|
|
|
public EntityUid Owner { get; }
|
|
public bool CanCollide { get; }
|
|
|
|
public CollisionChangeMessage(PhysicsComponent body, EntityUid owner, bool canCollide)
|
|
{
|
|
Body = body;
|
|
Owner = owner;
|
|
CanCollide = canCollide;
|
|
}
|
|
}
|
|
}
|