added vr message class

This commit is contained in:
Sem van der Hoeven
2020-09-16 14:43:19 +02:00
parent 60ae9a3716
commit 2adfce27b0

View File

@@ -1,7 +1,9 @@
using System;
using Newtonsoft.Json.Linq;
using System;
using System.IO;
using System.Net.Sockets;
using System.Runtime.Intrinsics.X86;
using System.Security.Cryptography.X509Certificates;
using System.Text;
namespace RH_Engine
@@ -95,4 +97,12 @@ namespace RH_Engine
return "PC - host:" + host + " - user:" + user;
}
}
public readonly struct VRMessage
{
public VRMessage(string id,params JObject[] data)
{
}
}
}