mirror of
https://github.com/ACEmulator/ACE
synced 2026-08-17 12:26:06 -04:00
16 lines
307 B
C#
16 lines
307 B
C#
namespace ACE.Server.Physics
|
|
{
|
|
public class ScriptManager
|
|
{
|
|
public PhysicsObj PhysObj;
|
|
public ScriptData CurrData;
|
|
public ScriptData LastData;
|
|
public int HookIndex;
|
|
public double NextHookTime;
|
|
|
|
public void UpdateScripts()
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|