mirror of
https://github.com/ACEmulator/ACE
synced 2026-08-17 12:26:06 -04:00
* More Portal.Dat Parsing * Update * Fixed Palette, removed Debug commands * Fixed spacing issue * Added ContractTable
24 lines
576 B
C#
24 lines
576 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace ACE.DatLoader.Entity
|
|
{
|
|
public class PhysicsScriptData
|
|
{
|
|
public double StartTime { get; set; }
|
|
public AnimationHook Hook { get; set; }
|
|
|
|
public static PhysicsScriptData Read(DatReader datReader)
|
|
{
|
|
PhysicsScriptData obj = new PhysicsScriptData();
|
|
|
|
obj.StartTime = datReader.ReadDouble();
|
|
obj.Hook = AnimationHook.Read(datReader);
|
|
|
|
return obj;
|
|
}
|
|
}
|
|
}
|