mirror of
https://github.com/opensim/opensim.git
synced 2026-05-31 14:55:53 +08:00
* Removed Golden Future TCP/SimChat options * Moved Ode.NET.dll to bin and changed prebuild accordingly (due to Prebuild limitations) * Normalized some namespaces * Added FxCop project * Added (temp disabled) Servers project (for great justice)
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);
|
|
}
|
|
}
|