Initial checkin
Initial checkin of Quest App Launcher
This commit is contained in:
@@ -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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user