mirror of
https://github.com/ACEmulator/ACE
synced 2026-08-17 12:26:06 -04:00
17 lines
382 B
C#
17 lines
382 B
C#
using System.IO;
|
|
|
|
namespace ACE.DatLoader.Entity
|
|
{
|
|
public class PhysicsScriptData : IUnpackable
|
|
{
|
|
public double StartTime { get; private set; }
|
|
public AnimationHook Hook { get; } = new AnimationHook();
|
|
|
|
public void Unpack(BinaryReader reader)
|
|
{
|
|
StartTime = reader.ReadDouble();
|
|
|
|
Hook.Unpack(reader);
|
|
}
|
|
}
|
|
}
|