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
386 B
C#
18 lines
386 B
C#
using System;
|
|
using Robust.Shared.Maths;
|
|
using Robust.Shared.Serialization;
|
|
|
|
namespace Robust.Shared.GameObjects
|
|
{
|
|
[Serializable, NetSerializable]
|
|
sealed class ClickableComponentState : ComponentState
|
|
{
|
|
public Box2? LocalBounds { get; }
|
|
|
|
public ClickableComponentState(Box2? localBounds)
|
|
{
|
|
LocalBounds = localBounds;
|
|
}
|
|
}
|
|
}
|