mirror of
https://github.com/sebastian-heinz/Arrowgene.DragonsDogmaOnline
synced 2026-08-03 11:12:41 -04:00
20 lines
No EOL
446 B
C#
20 lines
No EOL
446 B
C#
using System;
|
|
namespace Arrowgene.Ddon.GameServer
|
|
{
|
|
public class ClientConnectionChangeArgs: EventArgs
|
|
{
|
|
public enum EventType {
|
|
CONNECT,
|
|
DISCONNECT
|
|
}
|
|
|
|
public ClientConnectionChangeArgs(EventType eventType, GameClient client)
|
|
{
|
|
Action = eventType;
|
|
Client = client;
|
|
}
|
|
|
|
public EventType Action;
|
|
public GameClient Client;
|
|
}
|
|
} |