summaryrefslogtreecommitdiff
path: root/WorldlineKeepers/Assets/Scripts/Buffs/Buff.cs
blob: 7c8d7efbc03746cfd16b7238b38397fac57b52ba (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;
        }
    }

}