forked from isxGames/ISXEVEWrapper
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathChat.cs
More file actions
25 lines (21 loc) · 644 Bytes
/
Chat.cs
File metadata and controls
25 lines (21 loc) · 644 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
using System;
using System.Globalization;
using LavishScriptAPI;
namespace EVE.ISXEVE
{
public static class Chat
{
public static EveChat GetChat()
{
return new EveChat(LavishScript.Objects.GetObject("Chat"));
}
public static ChatChannel GetChat(string channelName)
{
return new ChatChannel(LavishScript.Objects.GetObject("Chat", channelName));
}
public static ChatChannel GetChat(Int64 channelId)
{
return new ChatChannel(LavishScript.Objects.GetObject("Chat", channelId.ToString(CultureInfo.CurrentCulture)));
}
}
}