No reason for synclists to be sealed

This commit is contained in:
Paul Pacheco 2018-10-13 12:21:38 -05:00
parent 425289fd3d
commit 0cc0fc0447

View File

@ -6,7 +6,7 @@
namespace Mirror namespace Mirror
{ {
public sealed class SyncListString : SyncList<string> public class SyncListString : SyncList<string>
{ {
protected override void SerializeItem(NetworkWriter writer, string item) protected override void SerializeItem(NetworkWriter writer, string item)
{ {
@ -19,7 +19,7 @@ protected override string DeserializeItem(NetworkReader reader)
} }
} }
public sealed class SyncListFloat : SyncList<float> public class SyncListFloat : SyncList<float>
{ {
protected override void SerializeItem(NetworkWriter writer, float item) protected override void SerializeItem(NetworkWriter writer, float item)
{ {