summaryrefslogtreecommitdiff
path: root/SurvivalTest/Assets/Scripts/Items/ItemBase.cs
blob: e7cecd6711e4075c0d98edc89ce5467751927757 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
using System.Collections;
using System.Collections.Generic;
using UnityEngine;

/// <summary>
/// 物品,可以加Buff、提升属性、技能附加效果
/// </summary>
public class ItemBase : MonoBehaviour
{

	public virtual string name { get; }

	public virtual string iconPath { get; }

	public virtual void Update()
	{
	}

}