Re-organize all projects (#4166)
This commit is contained in:
27
Content.Server/Destructible/DestructibleSystem.cs
Normal file
27
Content.Server/Destructible/DestructibleSystem.cs
Normal file
@@ -0,0 +1,27 @@
|
||||
using Content.Shared.Acts;
|
||||
using JetBrains.Annotations;
|
||||
using Robust.Server.GameObjects;
|
||||
using Robust.Shared.GameObjects;
|
||||
using Robust.Shared.IoC;
|
||||
using Robust.Shared.Random;
|
||||
|
||||
namespace Content.Server.Destructible
|
||||
{
|
||||
[UsedImplicitly]
|
||||
public class DestructibleSystem : EntitySystem
|
||||
{
|
||||
[Dependency] public readonly IRobustRandom Random = default!;
|
||||
|
||||
public AudioSystem AudioSystem { get; private set; } = default!;
|
||||
|
||||
public ActSystem ActSystem { get; private set; } = default!;
|
||||
|
||||
public override void Initialize()
|
||||
{
|
||||
base.Initialize();
|
||||
|
||||
AudioSystem = Get<AudioSystem>();
|
||||
ActSystem = Get<ActSystem>();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user