mirror of
https://github.com/raphaeIl/Novaria.git
synced 2025-12-14 15:34:37 +01:00
21 lines
336 B
C#
21 lines
336 B
C#
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;
|
|
}
|
|
|
|
}
|