Moved packet structures to common.

This commit is contained in:
Filip Maj 2016-08-22 10:43:04 -04:00
parent d5f0cbef8c
commit c67f74130f
169 changed files with 3939 additions and 919 deletions

View file

@ -1,6 +1,8 @@
using System;
using System.IO;
using FFXIVClassic.Common;
namespace FFXIVClassic_Map_Server.packets.send.list
{
class ListBeginPacket

View file

@ -1,6 +1,8 @@
using System;
using System.IO;
using FFXIVClassic.Common;
namespace FFXIVClassic_Map_Server.packets.send.list
{
class ListEndPacket

View file

@ -3,6 +3,8 @@ using System.Collections.Generic;
using System.IO;
using System.Text;
using FFXIVClassic.Common;
namespace FFXIVClassic_Map_Server.packets.send.list
{
class ListEntriesEndPacket

View file

@ -1,4 +1,6 @@
namespace FFXIVClassic_Map_Server.packets.send.list
using FFXIVClassic.Common;
namespace FFXIVClassic_Map_Server.packets.send.list
{
class ListEntry
{

View file

@ -2,6 +2,8 @@
using System.IO;
using System.Text;
using FFXIVClassic.Common;
namespace FFXIVClassic_Map_Server.packets.send.list
{
class ListStartPacket

View file

@ -1,5 +1,7 @@
using System.Collections.Generic;
using FFXIVClassic.Common;
namespace FFXIVClassic_Map_Server.packets.send.list
{
class ListUtils

View file

@ -5,7 +5,9 @@ using System.Linq;
using System.Reflection;
using System.Text;
namespace FFXIVClassic_Map_Server.packets.send.actor
using FFXIVClassic.Common;
namespace FFXIVClassic_Map_Server.packets.send.actor
{
class SetListPropetyPacket
{