fix(tests): Added missing SyncListByteValid test file (#634)

* Added missing SyncListByteValid test file (passing)

* Added a missing newline
This commit is contained in:
Zac North 2019-03-23 13:40:38 -04:00 committed by vis2k
parent 565fe58671
commit b0af876221

View File

@ -0,0 +1,12 @@
using UnityEngine;
using Mirror;
namespace MirrorTest
{
class MirrorTestPlayer : NetworkBehaviour
{
class MyByteClass : SyncList<byte> {};
MyByteClass Foo;
}
}