21 lines
315 B
Plaintext
21 lines
315 B
Plaintext
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
using Sirenix.OdinInspector;
|
|
|
|
public class PHomeBuffEvent : MonoBehaviour
|
|
{
|
|
[HideInEditorMode]
|
|
public PHomeBuff FromBuff;
|
|
|
|
public virtual void OnEventStart()
|
|
{
|
|
|
|
}
|
|
|
|
public virtual void OnEventEnd()
|
|
{
|
|
|
|
}
|
|
}
|