2022-02-08 00:42:49 -08:00
|
|
|
using Robust.Shared.Analyzers;
|
2022-01-11 19:12:08 -07:00
|
|
|
using Robust.Shared.GameObjects;
|
|
|
|
|
|
|
|
|
|
namespace Content.Server.Mining.Components;
|
|
|
|
|
|
2022-02-08 00:42:49 -08:00
|
|
|
[RegisterComponent]
|
2022-01-11 19:12:08 -07:00
|
|
|
[Friend(typeof(MineableSystem))]
|
2022-02-16 00:23:23 -07:00
|
|
|
public sealed class MineableComponent : Component
|
2022-01-11 19:12:08 -07:00
|
|
|
{
|
|
|
|
|
public float BaseMineTime = 1.0f;
|
|
|
|
|
}
|