mirror of
https://github.com/opensim/opensim.git
synced 2026-05-23 17:26:50 +08:00
17 lines
307 B
C#
17 lines
307 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
using OpenSim.Region.Environment.Modules.ModuleFramework;
|
|
|
|
namespace OpenSim.Region.Environment.Interfaces
|
|
{
|
|
public interface ICommandableModule
|
|
{
|
|
ICommander CommandInterface
|
|
{
|
|
get;
|
|
}
|
|
}
|
|
}
|