mirror of
https://github.com/opensim/opensim.git
synced 2026-05-31 14:55:53 +08:00
11 lines
215 B
C#
11 lines
215 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace ScriptAssemblies
|
|
{
|
|
public interface IScript
|
|
{
|
|
void ExecuteFunction(string functionName, params object[] args);
|
|
}
|
|
} |