source: binary-improvements/7dtd-server-fixes/src/NetConnections/IServer.cs@ 214

Last change on this file since 214 was 190, checked in by alloc, 10 years ago

fixes

File size: 220 bytes
Line 
1using System;
2using UnityEngine;
3
4namespace AllocsFixes.NetConnections
5{
6 public interface IServer
7 {
8 void Disconnect ();
9
10 void SendLine (string line);
11 void SendLog (string text, string trace, LogType type);
12 }
13}
14
Note: See TracBrowser for help on using the repository browser.