Foerming/Assets/Scripts/Items/FishingRod.cs
2022-05-10 00:01:57 +02:00

7 lines
181 B
C#

using UnityEngine;
namespace Items {
public class FishingRod : UsableItem {
public FishingRod() : base("Fishing Rod", "Can be used to fish fishy fish.", 1) { }
}
}