mirror of
https://github.com/zoriya/Skillfight.git
synced 2026-05-14 20:19:42 +00:00
10 lines
172 B
C#
10 lines
172 B
C#
using System.Collections;
|
|
using UnityEngine.Networking;
|
|
using UnityEngine;
|
|
|
|
public class NameUpdater : NetworkBehaviour {
|
|
|
|
[SyncVar]
|
|
public string playerName;
|
|
}
|