This repository has been archived on 2024-11-03. You can view files and clone it, but cannot push or open issues or pull requests.
snakeinabox/Assets/Oculus/Platform/Scripts/Models/NetworkingPeer.cs
2020-07-09 11:41:01 -07:00

17 lines
355 B
C#

namespace Oculus.Platform.Models
{
using UnityEngine;
using System;
using System.ComponentModel;
public class NetworkingPeer
{
public NetworkingPeer(UInt64 id, PeerConnectionState state) {
ID = id;
State = state;
}
public UInt64 ID { get; private set; }
public PeerConnectionState State { get; private set; }
}
}