FittsLaw/Assets/Oculus/Platform/Scripts/Models/NetworkingPeer.cs

18 lines
372 B
C#
Raw Normal View History

2018-10-09 20:59:57 -04:00
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; }
}
}