We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 94f1241 commit ce4ffbdCopy full SHA for ce4ffbd
MLAPI/NetworkingManagerComponents/Binary/BitReader.cs
@@ -129,7 +129,7 @@ public object ReadObjectPacked(Type type)
129
return ReadCharPacked();
130
if (type.IsEnum)
131
return ReadInt32Packed();
132
- if(typeof(IBitWritable).IsAssignableFrom(type))
+ if (typeof(IBitWritable).IsAssignableFrom(type))
133
{
134
object instance = Activator.CreateInstance(type);
135
((IBitWritable)instance).Read(this.source);
0 commit comments