Newer
Older
Simple-Multiplayer-Unity3D / Assets / Scripts / Network / NetworkCommand.cs
using System.Collections;
using System.Collections.Generic;
using UnityEngine;

namespace Multiplayer.Network
{
    public enum NetworkCommand : byte
    {
        PlayerJoin,
        PlayerLeave,
        PlayerMove,
        PlayerJoinConfirmed
    }
}