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