5 lines
103 B
C#
Raw Permalink Normal View History

public interface IFreezable
{
2025-08-15 17:16:06 +05:00
public bool isFrozen { get; set;}
void Freeze(float duration);
}