Files
BITFALL/Assets/BITFALL/Props/IStunObject.cs
2024-08-11 16:16:31 +08:00

12 lines
187 B
C#

using System;
namespace BITFALL.Props
{
public interface IStunObject
{
float Weight { get; }
event Action<float> OnWeightChanged;
void Stun(float distance, float duration);
}
}