mirror of
https://github.com/opensim/opensim.git
synced 2026-05-15 19:35:41 +08:00
16 lines
334 B
C#
16 lines
334 B
C#
using System.Net.Sockets;
|
|
using OpenSim.Framework;
|
|
using OpenSim.Region.Environment.Scenes;
|
|
|
|
namespace OpenSim.Region.ClientStack
|
|
{
|
|
public interface IClientNetworkServer
|
|
{
|
|
Socket Server { get; }
|
|
bool HandlesRegion(Location x);
|
|
void AddScene(Scene x);
|
|
|
|
void Start();
|
|
void Stop();
|
|
}
|
|
} |