2022-03-14 12:50:06 +08:00
|
|
|
using System.Collections;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using UnityEngine;
|
|
|
|
|
2022-03-19 17:47:36 +08:00
|
|
|
public class Stick :Item
|
2022-03-14 12:50:06 +08:00
|
|
|
{
|
2022-03-19 17:47:36 +08:00
|
|
|
|
|
|
|
|
2022-03-14 12:50:06 +08:00
|
|
|
// Start is called before the first frame update
|
2022-03-19 17:47:36 +08:00
|
|
|
protected override void Start()
|
2022-03-14 12:50:06 +08:00
|
|
|
{
|
2022-03-19 17:47:36 +08:00
|
|
|
base.Start();
|
2022-03-14 12:50:06 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// Update is called once per frame
|
|
|
|
void Update()
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
2022-03-19 17:47:36 +08:00
|
|
|
|
|
|
|
protected override void Attack()
|
|
|
|
{
|
|
|
|
base.Attack();
|
|
|
|
}
|
2022-03-14 12:50:06 +08:00
|
|
|
}
|