mirror of
https://github.com/ACEmulator/ACE
synced 2026-08-17 12:26:06 -04:00
10 lines
179 B
C#
10 lines
179 B
C#
|
|
namespace ACE.Server.Physics
|
||
|
|
{
|
||
|
|
public class ScriptData
|
||
|
|
{
|
||
|
|
public double StartTime;
|
||
|
|
public PhysicsScript Script;
|
||
|
|
public ScriptData NextData;
|
||
|
|
}
|
||
|
|
}
|