mirror of
https://github.com/ACEmulator/ACE
synced 2026-08-17 12:26:06 -04:00
31 lines
545 B
C#
31 lines
545 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 ScriptManager()
|
|
{
|
|
|
|
}
|
|
|
|
public ScriptManager(PhysicsObj obj)
|
|
{
|
|
PhysObj = obj;
|
|
}
|
|
|
|
public bool AddScript(uint scriptID)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
public void UpdateScripts()
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|