Re-organize all projects (#4166)
This commit is contained in:
16
Content.Server/Mining/Components/PickaxeComponent.cs
Normal file
16
Content.Server/Mining/Components/PickaxeComponent.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
using Robust.Shared.GameObjects;
|
||||
using Robust.Shared.Serialization.Manager.Attributes;
|
||||
|
||||
namespace Content.Server.Mining.Components
|
||||
{
|
||||
[RegisterComponent]
|
||||
public class PickaxeComponent : Component
|
||||
|
||||
{
|
||||
public override string Name => "Pickaxe";
|
||||
[DataField("miningSound")]
|
||||
public string MiningSound = "/Audio/Items/Mining/pickaxe.ogg";
|
||||
[DataField("miningSpeedMultiplier")]
|
||||
public float MiningSpeedMultiplier = 1f;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user