mirror of
https://github.com/opensim/opensim.git
synced 2026-08-13 13:15:44 +08:00
Merged most of the bug fixes etc in from LLdemo branch. Added the textures from that branch.
12 lines
200 B
C#
12 lines
200 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace OpenSim.CAPS
|
|
{
|
|
public interface IXmlRPCHandler
|
|
{
|
|
string HandleRPC(string requestBody);
|
|
}
|
|
}
|