12 lines
248 B
C#
12 lines
248 B
C#
using UnityEngine;
|
|
|
|
namespace Items {
|
|
public class FishingRod : Item, IUsable {
|
|
public FishingRod() : base("Fishing Rod", "Can be used to fish fishy fish.", 1) { }
|
|
|
|
public void select() {
|
|
|
|
}
|
|
|
|
}
|
|
}
|