mirror of
https://github.com/opensim/opensim.git
synced 2026-05-15 11:25:39 +08:00
* Applied patch from Melanie, mantis issue #1581 - "Refactor LSL language, api and compiler out of XEngine"
"First stage in a major Script Engine refactor, that will result in the LSL implementaions ebing reconverged. Not there yet, but one major part is done." Thank you, Melanie!
This commit is contained in:
17
OpenSim/Region/ScriptEngine/Interfaces/IScript.cs
Normal file
17
OpenSim/Region/ScriptEngine/Interfaces/IScript.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
using System;
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using OpenSim.Region.ScriptEngine.Interfaces;
|
||||
|
||||
namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase
|
||||
{
|
||||
public interface IScript
|
||||
{
|
||||
string[] GetApis();
|
||||
void InitApi(string name, IScriptApi data);
|
||||
|
||||
Dictionary<string,Object> GetVars();
|
||||
void SetVars(Dictionary<string,Object> vars);
|
||||
void ResetVars();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user