12 lines
187 B
C#
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);
|
|
}
|
|
}
|