test ike crypto works, new protos from pb

This commit is contained in:
raphaeIl
2025-01-11 10:23:59 -05:00
parent 0b12a29289
commit 01ebb3239d
661 changed files with 322271 additions and 220654 deletions

View File

@@ -0,0 +1,20 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Novaria.Common.Core
{
public class Packet
{
public short msgId;
public byte[] msgBody;
public Action<Packet, object> callback;
public short receiveMsgId;
}
}