forked from ProjectIgnis/WindBot-Ignite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
WindBotInfo.cs
31 lines (30 loc) · 816 Bytes
/
WindBotInfo.cs
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
26
27
28
29
30
31
using System;
namespace WindBot
{
public class WindBotInfo
{
public string Name { get; set; }
public string Deck { get; set; }
public string Dialog { get; set; }
public string Host { get; set; }
public int Port { get; set; }
public string HostInfo { get; set; }
public int Version { get; set; }
public int Hand { get; set; }
public bool Debug { get; set; }
public bool Chat { get; set; }
public WindBotInfo()
{
Name = "WindBot";
Deck = null;
Dialog = "default";
Host = "127.0.0.1";
Port = 7911;
HostInfo = "";
Version = 38|1<<8|8<<16;
Hand = 0;
Debug = false;
Chat = true;
}
}
}