7 lines
181 B
C#
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) { }
|
|
}
|
|
}
|