Remove the "irc", "press-media" and "tools" directories.
[reactos.git] / irc / TechBot / TechBot.IRCLibrary / IRC.cs
diff --git a/irc/TechBot/TechBot.IRCLibrary/IRC.cs b/irc/TechBot/TechBot.IRCLibrary/IRC.cs
deleted file mode 100644 (file)
index ca85f08..0000000
+++ /dev/null
@@ -1,30 +0,0 @@
-using System;\r
-\r
-namespace TechBot.IRCLibrary\r
-{\r
-       /// <summary>\r
-       /// IRC constants and helper methods.\r
-       /// </summary>\r
-       public class IRC\r
-       {\r
-               #region IRC commands\r
-\r
-               public const string JOIN = "JOIN";\r
-               public const string NICK = "NICK";\r
-               public const string PART = "PART";\r
-               public const string PING = "PING";\r
-               public const string PONG = "PONG";\r
-               public const string PRIVMSG = "PRIVMSG";\r
-               public const string USER = "USER";\r
-               public const string PASS = "PASS";\r
-               public const string GHOST = "NICKSERV GHOST";\r
-               public const string NOTICE = "NOTICE";\r
-\r
-               public const string RPL_NAMREPLY = "353";\r
-               public const string RPL_ENDOFNAMES = "366";\r
-               public const string ERR_NICKNAMEINUSE = "433";\r
-\r
-               #endregion\r
-\r
-       }\r
-}\r