10 lines
201 B
C#
10 lines
201 B
C#
using Script.RuntimeScript.GameLogic;
|
|
using UnityEngine;
|
|
|
|
namespace Script.RuntimeScript.ExplosionEffect
|
|
{
|
|
public interface IExplosion
|
|
{
|
|
public void Play(SpecialEventItem item);
|
|
}
|
|
} |