5 lines
103 B
C#
5 lines
103 B
C#
public interface IFreezable
|
|
{
|
|
public bool isFrozen { get; set;}
|
|
void Freeze(float duration);
|
|
} |