blob: c411c3fa8499aeedd17ecd67fd3b21566801409e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
/// <summary>
/// 创建角色残影
/// </summary>
public class ActionFlashEffect : ActionBase
{
public override void Execute()
{
}
}
|