AR Design
UBC EML collab with UBC SALA - visualizing IoT data in AR
DevicePortalConnections.cs
Go to the documentation of this file.
1 // Copyright (c) Microsoft Corporation. All rights reserved.
2 // Licensed under the MIT License. See LICENSE in the project root for license information.
3 
4 using System;
5 using System.Collections.Generic;
6 
7 namespace HoloToolkit.Unity
8 {
9  [Serializable]
11  {
12  public List<ConnectInfo> Connections = new List<ConnectInfo>(0);
13 
15  {
16  Connections.Add(connectInfo);
17  }
18  }
19 }