blob: 52b96858dee88bced32fecb9c4da2a63bc21f1dd (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class Item_Wrench : ItemBase
{
public override string name => "°âÊÖ";
public override string iconPath => "art/ui/item/wrench";
}
|