Added implementations of the event receive/send packets. Added lua scripting stuff. Added some utils.

This commit is contained in:
Filip Maj 2016-01-01 14:03:55 -05:00
parent d60938346b
commit 734a3f4e7f
15 changed files with 603 additions and 261 deletions

View file

@ -0,0 +1,20 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FFXIVClassic_Map_Server.lua
{
class LuaParam
{
public int typeID;
public Object value;
public LuaParam(int type, Object value)
{
this.typeID = type;
this.value = value;
}
}
}