Documentation for the Unity C# Library
Loading...
Searching...
No Matches
ConfigurationTypes.cs
Go to the documentation of this file.
1using Newtonsoft.Json.Linq;
2using System;
3using System.Collections;
4using System.Collections.Generic;
5using UnityEngine;
6
7namespace PixoVR.Apex
8{
9 [Serializable]
10 public class ConfigurationTypes
11 {
12 public string Platform;
13 public string ConfigTarget;
14
15 public ConfigurationTypes(JObject tokenObject)
16 {
17 Platform = tokenObject.Value<string>("platform");
18 ConfigTarget = tokenObject.Value<string>("configTarget");
19 }
20 }
21}
ConfigurationTypes(JObject tokenObject)