17 lines
487 B
C#
17 lines
487 B
C#
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Text;
|
||
|
using System.Net;
|
||
|
using System.Net.Sockets;
|
||
|
|
||
|
namespace OpenSim
|
||
|
{
|
||
|
public abstract class OpenSimApplication
|
||
|
{
|
||
|
public abstract void StartUp();
|
||
|
public abstract void Shutdown();
|
||
|
public abstract void SendPacketTo(byte[] buffer, int size, SocketFlags flags, uint circuitcode);// EndPoint packetSender);
|
||
|
public abstract void RemoveClientCircuit(uint circuitcode);
|
||
|
}
|
||
|
}
|