From 453f69dae9fff042be9e881135337bf8f8bb24b7 Mon Sep 17 00:00:00 2001 From: Tara Date: Fri, 20 Dec 2019 20:06:40 -0700 Subject: [PATCH] Create ASMInfo.cs --- Assembly/ASMInfo.cs | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 Assembly/ASMInfo.cs diff --git a/Assembly/ASMInfo.cs b/Assembly/ASMInfo.cs new file mode 100644 index 0000000..43d2403 --- /dev/null +++ b/Assembly/ASMInfo.cs @@ -0,0 +1,13 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace Bot.Assemble +{ + public class ASMInfo + { + public static string BotName = "ZBotCore"; + public static double BotVer = 5.1; + public static string GitPassword = "**REMOVED**"; + } +}