19 lines
432 B
C#
19 lines
432 B
C#
using Articulate_Network.Attributes;
|
|
using Articulate_Network.Interfaces;
|
|
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 TestPacket : Packet
|
|
{
|
|
public int TestOne { get; set; }
|
|
public bool TestTwo { get; set; }
|
|
public string TestThree { get; set; }
|
|
}
|
|
}
|