Refactor IPC

This commit is contained in:
Natsumi
2023-03-07 01:09:01 +13:00
parent 18aa24fa60
commit bb8c3dcfa9
8 changed files with 151 additions and 38 deletions

9
IPCPacket.cs Normal file
View File

@@ -0,0 +1,9 @@
namespace VRCX
{
public class IPCPacket
{
public string Type { get; set; }
public string Data { get; set; }
public string MsgType { get; set; }
}
}