mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-14 19:51:29 +00:00
17 lines
444 B
C#
17 lines
444 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace StreamParser.Common.Daybreak
|
|
{
|
|
public interface IParser
|
|
{
|
|
delegate void ConnectionHandler(IConnection connection, DateTime connectionTime);
|
|
ConnectionHandler OnNewConnection { get; set; }
|
|
ConnectionHandler OnLostConnection { get; set; }
|
|
void Parse(string filename);
|
|
}
|
|
}
|