using Articulate_Network.Packets; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace MIT_Packets { public class AnnouncePacket : Packet { public int Type { get; set; } public bool RequestConfig { get; set; } public string MacAddress { get; set; } public static void Register() { } } }