using System.Collections; using System.Collections.Generic; using UnityEngine; namespace Multiplayer.Network { public enum NetworkCommand : byte { PlayerJoin, PlayerLeave, PlayerMove, PlayerJoinConfirmed } }