Overwrite
Complete Overwrite of the Folder with the free shard. ServUO 57.3 has been added.
This commit is contained in:
21
Scripts/Services/Chat/ChatActionHandler.cs
Normal file
21
Scripts/Services/Chat/ChatActionHandler.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
using System;
|
||||
|
||||
namespace Server.Engines.Chat
|
||||
{
|
||||
public delegate void OnChatAction(ChatUser from, Channel channel, string param);
|
||||
|
||||
public class ChatActionHandler
|
||||
{
|
||||
private bool m_RequireConference;
|
||||
private OnChatAction m_Callback;
|
||||
|
||||
public bool RequireConference { get { return m_RequireConference; } }
|
||||
public OnChatAction Callback { get { return m_Callback; } }
|
||||
|
||||
public ChatActionHandler(bool requireConference, OnChatAction callback)
|
||||
{
|
||||
m_RequireConference = requireConference;
|
||||
m_Callback = callback;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user