ace/Source/ACE.Server/Physics/Scripts/PhysicsScriptTable.cs

21 lines
363 B
C#
Raw Permalink Normal View History

2018-02-25 00:55:14 -05:00
using ACE.Entity.Enum;
using System.Collections.Generic;
namespace ACE.Server.Physics
{
public class PhysicsScriptTable
{
public Dictionary<long, PhysicsScriptTableData> ScriptTable;
2018-02-24 07:10:34 -05:00
public void Release()
{
}
2018-02-25 00:55:14 -05:00
public uint GetScript(PlayScript? type, float? mod)
2018-02-25 00:55:14 -05:00
{
2018-03-11 08:36:42 -04:00
return 0;
2018-02-25 00:55:14 -05:00
}
}
}