mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-15 03:30:53 +01:00
9 lines
207 B
C#
9 lines
207 B
C#
using Robust.Shared.IoC;
|
|
|
|
namespace Robust.Shared.GameObjects;
|
|
|
|
public abstract class SharedEyeSystem : EntitySystem
|
|
{
|
|
[Dependency] protected readonly SharedTransformSystem TransformSystem = default!;
|
|
}
|