Initial checkin

Initial checkin of Quest App Launcher
This commit is contained in:
tverona1
2019-07-16 23:46:19 -07:00
parent 6b98242a9b
commit fe3f38ee64
933 changed files with 105478 additions and 1 deletions
@@ -0,0 +1,17 @@
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; }
}
}