26 lines
476 B
C#
26 lines
476 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
public class SpecailBuff_Bonfire : SpecailBuff_Buildings
|
|
{
|
|
[Header("所属建筑")]
|
|
public Bonfire_Buildings bonfire_Building;
|
|
// Start is called before the first frame update
|
|
|
|
// Update is called once per frame
|
|
void Update()
|
|
{
|
|
|
|
}
|
|
public void Bonfire_Buff_1()
|
|
{
|
|
}
|
|
public void Bonfire_Buff_2()
|
|
{
|
|
}
|
|
public void Bonfire_Buff_3()
|
|
{
|
|
}
|
|
}
|