summaryrefslogtreecommitdiff
path: root/WorldlineKeepers/Assets/Scripts/Buffs/Buff.cs
blob: 1c6ae5a05faa8859a8512b722d9683b45070b36f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using WK;
using WK.Data;

/// <summary>
/// Buff结构
/// </summary>
public abstract class Buff 
{
    // 元数据
    public BuffMetadata metadata;

    // buff效果器
    public BuffBehaviour effector;

    public string uid
    {
        get
        {
            return metadata.uid;
        }
    }

}