mirror of
https://github.com/ACEmulator/ACE
synced 2026-08-17 12:26:06 -04:00
11 lines
213 B
C#
11 lines
213 B
C#
using ACE.Server.Physics.Animation;
|
|
using ACE.DatLoader.Entity;
|
|
|
|
namespace ACE.Server.Physics
|
|
{
|
|
public class PhysicsScriptData
|
|
{
|
|
public double StartTime;
|
|
public AnimationHook Hook;
|
|
}
|
|
}
|