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,21 @@
namespace Oculus.Platform.Models
{
using UnityEngine;
using System;
using System.Collections;
using System.Collections.Generic;
public class Error
{
public Error(int code, string message, int httpCode)
{
Message = message;
Code = code;
HttpCode = httpCode;
}
public readonly int Code;
public readonly int HttpCode;
public readonly string Message;
}
}