We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2cf8f5c commit ea0c08cCopy full SHA for ea0c08c
JustAnotherVoiceChat.Server.Wrapper/src/Structs/VoiceHandle.cs
@@ -29,9 +29,9 @@ namespace JustAnotherVoiceChat.Server.Wrapper.Structs
29
{
30
public struct VoiceHandle
31
32
+ public static VoiceHandle Empty => new VoiceHandle(0);
33
34
public bool IsEmpty => Identifer == 0;
-
35
public ushort Identifer { get; }
36
37
public VoiceHandle(ushort identifer)
@@ -64,10 +64,5 @@ public override int GetHashCode()
64
65
return !left.Equals(right);
66
}
67
68
- public static VoiceHandle Empty()
69
- {
70
- return new VoiceHandle(0);
71
- }
72
73
0 commit comments