Update SyncLists.md

This commit is contained in:
MrGadget 2019-08-10 19:09:18 -04:00 committed by GitHub
parent 5c1440b2f0
commit 7d016aebec
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -40,9 +40,9 @@ public struct Item
class SyncListItem : SyncList<Item> {}
class Player : NetworkBehaviour {
SyncListItem inventory;
class Player : NetworkBehaviour
{
SyncListItem inventory = new SyncListItem();
public int coins = 100;