Created and implemented Packet abstract class

This commit is contained in:
2021-12-15 15:17:00 +10:00
parent cdda6c0c8a
commit a9bc8c4e7d
5 changed files with 303 additions and 30 deletions
+14
View File
@@ -0,0 +1,14 @@
using Articulate_Network.Interfaces;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Articulate_Network.Packets
{
public abstract class Packet : IPacket
{
}
}