summaryrefslogtreecommitdiff
path: root/SurvivalTest/Assets/Scripts/Props/PropBase.cs
blob: 3976a3c8d4da5fecc4c3d88d942cf1cc062f602c (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>
/// ÎïÆ·
/// </summary>
public abstract class PropBase
{

	public abstract string name { get; }

	public abstract string iconPath { get; }

	public abstract void OnUse(GameObject owner);

	public virtual void Update() { }

}