mirror of
https://github.com/opensim/opensim.git
synced 2026-06-02 16:45:35 +08:00
13 lines
263 B
C#
13 lines
263 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace OpenSim.Framework.Console
|
|
{
|
|
public interface conscmd_callback
|
|
{
|
|
void RunCmd(string cmd, string[] cmdparams);
|
|
void Show(string ShowWhat);
|
|
}
|
|
}
|