Browse Source

Updated name in copyright notices.

Updated Jupiter.
pull/3/head
JustinAJ 9 years ago
parent
commit
8fd790c58b
  1. 4
      Bot/Console_Command.cpp
  2. 4
      Bot/Console_Command.h
  3. 4
      Bot/Generic_Command.cpp
  4. 4
      Bot/Generic_Command.h
  5. 4
      Bot/IRC_Bot.cpp
  6. 4
      Bot/IRC_Bot.h
  7. 4
      Bot/IRC_Command.cpp
  8. 4
      Bot/IRC_Command.h
  9. 4
      Bot/Jupiter_Bot.h
  10. 4
      Bot/Main.cpp
  11. 4
      Bot/ServerManager.cpp
  12. 4
      Bot/ServerManager.h
  13. 4
      ChannelRelay/ChannelRelay.cpp
  14. 4
      ChannelRelay/ChannelRelay.h
  15. 4
      CoreCommands/CoreCommands.cpp
  16. 4
      CoreCommands/CoreCommands.h
  17. 4
      ExtraCommands/ExtraCommands.cpp
  18. 4
      ExtraCommands/ExtraCommands.h
  19. 4
      FunCommands/FunCommands.cpp
  20. 4
      FunCommands/FunCommands.h
  21. 2
      Jupiter
  22. 2
      Plugin.Example/Example.cpp
  23. 2
      Plugin.Example/Example.h
  24. 2
      Plugin.Template/Example.cpp
  25. 2
      Plugin.Template/Example.h
  26. 4
      PluginManager/PluginManager.cpp
  27. 4
      PluginManager/PluginManager.h
  28. BIN
      Release/Bot.lib
  29. BIN
      Release/Plugins/RenX.Core.lib
  30. 4
      RenX.Announcements/RenX_Announcements.cpp
  31. 4
      RenX.Announcements/RenX_Announcements.h
  32. 4
      RenX.Commands/RenX_Commands.cpp
  33. 4
      RenX.Commands/RenX_Commands.h
  34. 4
      RenX.Core/RenX.h
  35. 4
      RenX.Core/RenX_BanDatabase.cpp
  36. 4
      RenX.Core/RenX_BanDatabase.h
  37. 4
      RenX.Core/RenX_BuildingInfo.h
  38. 4
      RenX.Core/RenX_Core.cpp
  39. 4
      RenX.Core/RenX_Core.h
  40. 4
      RenX.Core/RenX_Functions.cpp
  41. 4
      RenX.Core/RenX_Functions.h
  42. 4
      RenX.Core/RenX_GameCommand.cpp
  43. 4
      RenX.Core/RenX_GameCommand.h
  44. 4
      RenX.Core/RenX_PlayerInfo.h
  45. 4
      RenX.Core/RenX_Plugin.cpp
  46. 4
      RenX.Core/RenX_Plugin.h
  47. 4
      RenX.Core/RenX_Server.cpp
  48. 4
      RenX.Core/RenX_Server.h
  49. 4
      RenX.Core/RenX_Tags.cpp
  50. 4
      RenX.Core/RenX_Tags.h
  51. 4
      RenX.DNS/RenX_DNS.cpp
  52. 4
      RenX.DNS/RenX_DNS.h
  53. 4
      RenX.ExcessiveHeadshots/ExcessiveHeadshots.cpp
  54. 4
      RenX.ExcessiveHeadshots/ExcessiveHeadshots.h
  55. 4
      RenX.ExtraLogging/RenX_ExtraLogging.cpp
  56. 4
      RenX.ExtraLogging/RenX_ExtraLogging.h
  57. 4
      RenX.Greetings/RenX_Greetings.cpp
  58. 4
      RenX.Greetings/RenX_Greetings.h
  59. 4
      RenX.HybridUUID/RenX_HybridUUID.cpp
  60. 4
      RenX.HybridUUID/RenX_HybridUUID.h
  61. 4
      RenX.IRCJoin/RenX_IRCJoin.cpp
  62. 4
      RenX.IRCJoin/RenX_IRCJoin.h
  63. 4
      RenX.Ladder/RenX_Ladder.cpp
  64. 4
      RenX.Ladder/RenX_Ladder.h
  65. 4
      RenX.Ladder/RenX_LadderDatabase.cpp
  66. 4
      RenX.Ladder/RenX_LadderDatabase.h
  67. 4
      RenX.Listen/RenX_Listen.cpp
  68. 4
      RenX.Listen/RenX_Listen.h
  69. 4
      RenX.Logging/RenX_Logging.cpp
  70. 4
      RenX.Logging/RenX_Logging.h
  71. 4
      RenX.Medals/RenX_Medals.cpp
  72. 4
      RenX.Medals/RenX_Medals.h
  73. 4
      RenX.MinPlayers/RenX_MinPlayers.cpp
  74. 4
      RenX.MinPlayers/RenX_MinPlayers.h
  75. 4
      RenX.ModSystem/RenX_ModSystem.cpp
  76. 4
      RenX.ModSystem/RenX_ModSystem.h
  77. 4
      RenX.NicknameUUID/RenX_NicknameUUID.cpp
  78. 4
      RenX.NicknameUUID/RenX_NicknameUUID.h
  79. 2
      RenX.Plugin.Template/Example.cpp
  80. 2
      RenX.Plugin.Template/Example.h
  81. 4
      RenX.SetJoin/RenX_SetJoin.cpp
  82. 4
      RenX.SetJoin/RenX_SetJoin.h
  83. 4
      RenX.Warn/RenX_Warn.cpp
  84. 4
      RenX.Warn/RenX_Warn.h
  85. 4
      SetJoin/SetJoin.cpp
  86. 4
      SetJoin/SetJoin.h

4
Bot/Console_Command.cpp

@ -1,5 +1,5 @@
/**
* Copyright (C) 2013-2015 Justin James.
* Copyright (C) 2013-2015 Jessica James.
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
@ -13,7 +13,7 @@
* OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
* Written by Justin James <justin.aj@hotmail.com>
* Written by Jessica James <jessica.aj@outlook.com>
*/
#include "Console_Command.h"

4
Bot/Console_Command.h

@ -1,5 +1,5 @@
/**
* Copyright (C) 2013-2015 Justin James.
* Copyright (C) 2013-2015 Jessica James.
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
@ -13,7 +13,7 @@
* OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
* Written by Justin James <justin.aj@hotmail.com>
* Written by Jessica James <jessica.aj@outlook.com>
*/
#if !defined _CONSOLE_COMMAND_H_HEADER

4
Bot/Generic_Command.cpp

@ -1,5 +1,5 @@
/**
* Copyright (C) 2015 Justin James.
* Copyright (C) 2015 Jessica James.
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
@ -13,7 +13,7 @@
* OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
* Written by Justin James <justin.aj@hotmail.com>
* Written by Jessica James <jessica.aj@outlook.com>
*/
#include "Generic_Command.h"

4
Bot/Generic_Command.h

@ -1,5 +1,5 @@
/**
* Copyright (C) 2015 Justin James.
* Copyright (C) 2015 Jessica James.
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
@ -13,7 +13,7 @@
* OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
* Written by Justin James <justin.aj@hotmail.com>
* Written by Jessica James <jessica.aj@outlook.com>
*/
#if !defined _GENERIC_COMMAND_H_HEADER

4
Bot/IRC_Bot.cpp

@ -1,5 +1,5 @@
/**
* Copyright (C) 2013-2015 Justin James.
* Copyright (C) 2013-2015 Jessica James.
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
@ -13,7 +13,7 @@
* OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
* Written by Justin James <justin.aj@hotmail.com>
* Written by Jessica James <jessica.aj@outlook.com>
*/
/**

4
Bot/IRC_Bot.h

@ -1,5 +1,5 @@
/**
* Copyright (C) 2013-2015 Justin James.
* Copyright (C) 2013-2015 Jessica James.
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
@ -13,7 +13,7 @@
* OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
* Written by Justin James <justin.aj@hotmail.com>
* Written by Jessica James <jessica.aj@outlook.com>
*/
#if !defined _IRC_BOT_H_HEADER

4
Bot/IRC_Command.cpp

@ -1,5 +1,5 @@
/**
* Copyright (C) 2013-2015 Justin James.
* Copyright (C) 2013-2015 Jessica James.
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
@ -13,7 +13,7 @@
* OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
* Written by Justin James <justin.aj@hotmail.com>
* Written by Jessica James <jessica.aj@outlook.com>
*/
#include "IRC_Command.h"

4
Bot/IRC_Command.h

@ -1,5 +1,5 @@
/**
* Copyright (C) 2013-2015 Justin James.
* Copyright (C) 2013-2015 Jessica James.
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
@ -13,7 +13,7 @@
* OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
* Written by Justin James <justin.aj@hotmail.com>
* Written by Jessica James <jessica.aj@outlook.com>
*/
#if !defined _IRC_COMMAND_H_HEADER

4
Bot/Jupiter_Bot.h

@ -1,5 +1,5 @@
/**
* Copyright (C) 2013-2015 Justin James.
* Copyright (C) 2013-2015 Jessica James.
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
@ -13,7 +13,7 @@
* OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
* Written by Justin James <justin.aj@hotmail.com>
* Written by Jessica James <jessica.aj@outlook.com>
*/
#if !defined JUPITER_BOT_API

4
Bot/Main.cpp

@ -1,5 +1,5 @@
/**
* Copyright (C) 2013-2015 Justin James.
* Copyright (C) 2013-2015 Jessica James.
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
@ -13,7 +13,7 @@
* OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
* Written by Justin James <justin.aj@hotmail.com>
* Written by Jessica James <jessica.aj@outlook.com>
*/
#include <ctime>

4
Bot/ServerManager.cpp

@ -1,5 +1,5 @@
/**
* Copyright (C) 2014-2015 Justin James.
* Copyright (C) 2014-2015 Jessica James.
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
@ -13,7 +13,7 @@
* OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
* Written by Justin James <justin.aj@hotmail.com>
* Written by Jessica James <jessica.aj@outlook.com>
*/
#include "Jupiter/Functions.h"

4
Bot/ServerManager.h

@ -1,5 +1,5 @@
/**
* Copyright (C) 2014 Justin James.
* Copyright (C) 2014 Jessica James.
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
@ -13,7 +13,7 @@
* OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
* Written by Justin James <justin.aj@hotmail.com>
* Written by Jessica James <jessica.aj@outlook.com>
*/
#if !defined _SERVERMANAGER_H_HEADER

4
ChannelRelay/ChannelRelay.cpp

@ -1,5 +1,5 @@
/**
* Copyright (C) 2015 Justin James.
* Copyright (C) 2015 Jessica James.
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
@ -13,7 +13,7 @@
* OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
* Written by Justin James <justin.aj@hotmail.com>
* Written by Jessica James <jessica.aj@outlook.com>
*/
#include "Jupiter/IRC_Client.h"

4
ChannelRelay/ChannelRelay.h

@ -1,5 +1,5 @@
/**
* Copyright (C) 2015 Justin James.
* Copyright (C) 2015 Jessica James.
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
@ -13,7 +13,7 @@
* OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
* Written by Justin James <justin.aj@hotmail.com>
* Written by Jessica James <jessica.aj@outlook.com>
*/
#if !defined _CHANNELRELAY_H_HEADER

4
CoreCommands/CoreCommands.cpp

@ -1,5 +1,5 @@
/**
* Copyright (C) 2014-2015 Justin James.
* Copyright (C) 2014-2015 Jessica James.
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
@ -13,7 +13,7 @@
* OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
* Written by Justin James <justin.aj@hotmail.com>
* Written by Jessica James <jessica.aj@outlook.com>
*/
#include <cstring>

4
CoreCommands/CoreCommands.h

@ -1,5 +1,5 @@
/**
* Copyright (C) 2014-2015 Justin James.
* Copyright (C) 2014-2015 Jessica James.
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
@ -13,7 +13,7 @@
* OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
* Written by Justin James <justin.aj@hotmail.com>
* Written by Jessica James <jessica.aj@outlook.com>
*/
#if !defined _CORECOMMANDS_H_HEADER

4
ExtraCommands/ExtraCommands.cpp

@ -1,5 +1,5 @@
/**
* Copyright (C) 2014-2015 Justin James.
* Copyright (C) 2014-2015 Jessica James.
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
@ -13,7 +13,7 @@
* OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
* Written by Justin James <justin.aj@hotmail.com>
* Written by Jessica James <jessica.aj@outlook.com>
*/
#include <cstring>

4
ExtraCommands/ExtraCommands.h

@ -1,5 +1,5 @@
/**
* Copyright (C) 2014-2015 Justin James.
* Copyright (C) 2014-2015 Jessica James.
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
@ -13,7 +13,7 @@
* OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
* Written by Justin James <justin.aj@hotmail.com>
* Written by Jessica James <jessica.aj@outlook.com>
*/
#if !defined _FUNCOMMANDS_H_HEADER

4
FunCommands/FunCommands.cpp

@ -1,5 +1,5 @@
/**
* Copyright (C) 2014-2015 Justin James.
* Copyright (C) 2014-2015 Jessica James.
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
@ -13,7 +13,7 @@
* OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
* Written by Justin James <justin.aj@hotmail.com>
* Written by Jessica James <jessica.aj@outlook.com>
*/
#include <cstring>

4
FunCommands/FunCommands.h

@ -1,5 +1,5 @@
/**
* Copyright (C) 2014-2015 Justin James.
* Copyright (C) 2014-2015 Jessica James.
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
@ -13,7 +13,7 @@
* OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
* Written by Justin James <justin.aj@hotmail.com>
* Written by Jessica James <jessica.aj@outlook.com>
*/
#if !defined _FUNCOMMANDS_H_HEADER

2
Jupiter

@ -1 +1 @@
Subproject commit 8cc73c997a35d8abedd64dcd45b1016c57330000
Subproject commit 6f708bd73e525d2871ebba2c076f448610b34f74

2
Plugin.Example/Example.cpp

@ -3,7 +3,7 @@
* support, and with no warranty, express or implied, as to its usefulness for
* any purpose.
*
* Written by Justin James <justin.aj@hotmail.com>
* Written by Jessica James <jessica.aj@outlook.com>
*/
#include "Example.h"

2
Plugin.Example/Example.h

@ -3,7 +3,7 @@
* support, and with no warranty, express or implied, as to its usefulness for
* any purpose.
*
* Written by Justin James <justin.aj@hotmail.com>
* Written by Jessica James <jessica.aj@outlook.com>
*/
#if !defined _EXAMPLE_H_HEADER

2
Plugin.Template/Example.cpp

@ -3,7 +3,7 @@
* support, and with no warranty, express or implied, as to its usefulness for
* any purpose.
*
* Written by Justin James <justin.aj@hotmail.com>
* Written by Jessica James <jessica.aj@outlook.com>
*/
#include "Example.h"

2
Plugin.Template/Example.h

@ -3,7 +3,7 @@
* support, and with no warranty, express or implied, as to its usefulness for
* any purpose.
*
* Written by Justin James <justin.aj@hotmail.com>
* Written by Jessica James <jessica.aj@outlook.com>
*/
#if !defined _EXAMPLE_H_HEADER

4
PluginManager/PluginManager.cpp

@ -1,5 +1,5 @@
/**
* Copyright (C) 2014-2015 Justin James.
* Copyright (C) 2014-2015 Jessica James.
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
@ -13,7 +13,7 @@
* OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
* Written by Justin James <justin.aj@hotmail.com>
* Written by Jessica James <jessica.aj@outlook.com>
*/
#include <cstring>

4
PluginManager/PluginManager.h

@ -1,5 +1,5 @@
/**
* Copyright (C) 2014-2015 Justin James.
* Copyright (C) 2014-2015 Jessica James.
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
@ -13,7 +13,7 @@
* OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
* Written by Justin James <justin.aj@hotmail.com>
* Written by Jessica James <jessica.aj@outlook.com>
*/
#if !defined _PLUGINMANAGER_H_HEADER

BIN
Release/Bot.lib

Binary file not shown.

BIN
Release/Plugins/RenX.Core.lib

Binary file not shown.

4
RenX.Announcements/RenX_Announcements.cpp

@ -1,5 +1,5 @@
/**
* Copyright (C) 2014-2015 Justin James.
* Copyright (C) 2014-2015 Jessica James.
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
@ -13,7 +13,7 @@
* OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
* Written by Justin James <justin.aj@hotmail.com>
* Written by Jessica James <jessica.aj@outlook.com>
*/
#include "Jupiter/IRC_Client.h"

4
RenX.Announcements/RenX_Announcements.h

@ -1,5 +1,5 @@
/**
* Copyright (C) 2014-2015 Justin James.
* Copyright (C) 2014-2015 Jessica James.
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
@ -13,7 +13,7 @@
* OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
* Written by Justin James <justin.aj@hotmail.com>
* Written by Jessica James <jessica.aj@outlook.com>
*/
#if !defined _RENX_ANNOUNCEMENTS_H_HEADER

4
RenX.Commands/RenX_Commands.cpp

@ -1,5 +1,5 @@
/**
* Copyright (C) 2014-2015 Justin James.
* Copyright (C) 2014-2015 Jessica James.
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
@ -13,7 +13,7 @@
* OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
* Written by Justin James <justin.aj@hotmail.com>
* Written by Jessica James <jessica.aj@outlook.com>
*/
#include <functional>

4
RenX.Commands/RenX_Commands.h

@ -1,5 +1,5 @@
/**
* Copyright (C) 2014-2015 Justin James.
* Copyright (C) 2014-2015 Jessica James.
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
@ -13,7 +13,7 @@
* OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
* Written by Justin James <justin.aj@hotmail.com>
* Written by Jessica James <jessica.aj@outlook.com>
*/
#if !defined _RENX_COMMANDS_H_HEADER

4
RenX.Core/RenX.h

@ -1,5 +1,5 @@
/**
* Copyright (C) 2014-2015 Justin James.
* Copyright (C) 2014-2015 Jessica James.
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
@ -13,7 +13,7 @@
* OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
* Written by Justin James <justin.aj@hotmail.com>
* Written by Jessica James <jessica.aj@outlook.com>
*/
#if !defined RENX_API

4
RenX.Core/RenX_BanDatabase.cpp

@ -1,5 +1,5 @@
/**
* Copyright (C) 2014-2015 Justin James.
* Copyright (C) 2014-2015 Jessica James.
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
@ -13,7 +13,7 @@
* OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
* Written by Justin James <justin.aj@hotmail.com>
* Written by Jessica James <jessica.aj@outlook.com>
*/
#include <cstdio>

4
RenX.Core/RenX_BanDatabase.h

@ -1,5 +1,5 @@
/**
* Copyright (C) 2014-2015 Justin James.
* Copyright (C) 2014-2015 Jessica James.
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
@ -13,7 +13,7 @@
* OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
* Written by Justin James <justin.aj@hotmail.com>
* Written by Jessica James <jessica.aj@outlook.com>
*/
#if !defined _RENX_BANDATABASE_H_HEADER

4
RenX.Core/RenX_BuildingInfo.h

@ -1,5 +1,5 @@
/**
* Copyright (C) 2015 Justin James.
* Copyright (C) 2015 Jessica James.
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
@ -13,7 +13,7 @@
* OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
* Written by Justin James <justin.aj@hotmail.com>
* Written by Jessica James <jessica.aj@outlook.com>
*/
#if !defined _RENX_BUILDINGINFO_H_HEADER

4
RenX.Core/RenX_Core.cpp

@ -1,5 +1,5 @@
/**
* Copyright (C) 2014-2015 Justin James.
* Copyright (C) 2014-2015 Jessica James.
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
@ -13,7 +13,7 @@
* OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
* Written by Justin James <justin.aj@hotmail.com>
* Written by Jessica James <jessica.aj@outlook.com>
*/
#include <ctime>

4
RenX.Core/RenX_Core.h

@ -1,5 +1,5 @@
/**
* Copyright (C) 2014-2015 Justin James.
* Copyright (C) 2014-2015 Jessica James.
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
@ -13,7 +13,7 @@
* OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
* Written by Justin James <justin.aj@hotmail.com>
* Written by Jessica James <jessica.aj@outlook.com>
*/
#if !defined _RENX_CORE_H_HEADER

4
RenX.Core/RenX_Functions.cpp

@ -1,5 +1,5 @@
/**
* Copyright (C) 2014-2015 Justin James.
* Copyright (C) 2014-2015 Jessica James.
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
@ -13,7 +13,7 @@
* OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
* Written by Justin James <justin.aj@hotmail.com>
* Written by Jessica James <jessica.aj@outlook.com>
*/
#include <ctime>

4
RenX.Core/RenX_Functions.h

@ -1,5 +1,5 @@
/**
* Copyright (C) 2014-2015 Justin James.
* Copyright (C) 2014-2015 Jessica James.
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
@ -13,7 +13,7 @@
* OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
* Written by Justin James <justin.aj@hotmail.com>
* Written by Jessica James <jessica.aj@outlook.com>
*/
#if !defined _RENX_FUNCTIONS_H_HEADER

4
RenX.Core/RenX_GameCommand.cpp

@ -1,5 +1,5 @@
/**
* Copyright (C) 2014-2015 Justin James.
* Copyright (C) 2014-2015 Jessica James.
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
@ -13,7 +13,7 @@
* OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
* Written by Justin James <justin.aj@hotmail.com>
* Written by Jessica James <jessica.aj@outlook.com>
*/
#include "RenX_GameCommand.h"

4
RenX.Core/RenX_GameCommand.h

@ -1,5 +1,5 @@
/**
* Copyright (C) 2014-2015 Justin James.
* Copyright (C) 2014-2015 Jessica James.
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
@ -13,7 +13,7 @@
* OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
* Written by Justin James <justin.aj@hotmail.com>
* Written by Jessica James <jessica.aj@outlook.com>
*/
#if !defined _RENX_GAMECOMMAND_H_HEADER

4
RenX.Core/RenX_PlayerInfo.h

@ -1,5 +1,5 @@
/**
* Copyright (C) 2014-2015 Justin James.
* Copyright (C) 2014-2015 Jessica James.
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
@ -13,7 +13,7 @@
* OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
* Written by Justin James <justin.aj@hotmail.com>
* Written by Jessica James <jessica.aj@outlook.com>
*/
#if !defined _RENX_PLAYERINFO_H_HEADER

4
RenX.Core/RenX_Plugin.cpp

@ -1,5 +1,5 @@
/**
* Copyright (C) 2014-2015 Justin James.
* Copyright (C) 2014-2015 Jessica James.
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
@ -13,7 +13,7 @@
* OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
* Written by Justin James <justin.aj@hotmail.com>
* Written by Jessica James <jessica.aj@outlook.com>
*/
#include "RenX_Plugin.h"

4
RenX.Core/RenX_Plugin.h

@ -1,5 +1,5 @@
/**
* Copyright (C) 2014-2015 Justin James.
* Copyright (C) 2014-2015 Jessica James.
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
@ -13,7 +13,7 @@
* OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
* Written by Justin James <justin.aj@hotmail.com>
* Written by Jessica James <jessica.aj@outlook.com>
*/
#if !defined _RENX_PLUGIN_H_HEADER

4
RenX.Core/RenX_Server.cpp

@ -1,5 +1,5 @@
/**
* Copyright (C) 2014-2015 Justin James.
* Copyright (C) 2014-2015 Jessica James.
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
@ -13,7 +13,7 @@
* OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
* Written by Justin James <justin.aj@hotmail.com>
* Written by Jessica James <jessica.aj@outlook.com>
*/
#include <ctime>

4
RenX.Core/RenX_Server.h

@ -1,5 +1,5 @@
/**
* Copyright (C) 2014-2015 Justin James.
* Copyright (C) 2014-2015 Jessica James.
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
@ -13,7 +13,7 @@
* OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
* Written by Justin James <justin.aj@hotmail.com>
* Written by Jessica James <jessica.aj@outlook.com>
*/
#if !defined _RENX_SERVER_H_HEADER

4
RenX.Core/RenX_Tags.cpp

@ -1,5 +1,5 @@
/**
* Copyright (C) 2015 Justin James.
* Copyright (C) 2015 Jessica James.
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
@ -13,7 +13,7 @@
* OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
* Written by Justin James <justin.aj@hotmail.com>
* Written by Jessica James <jessica.aj@outlook.com>
*/
#include "Jupiter/Reference_String.h"

4
RenX.Core/RenX_Tags.h

@ -1,5 +1,5 @@
/**
* Copyright (C) 2015 Justin James.
* Copyright (C) 2015 Jessica James.
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
@ -13,7 +13,7 @@
* OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
* Written by Justin James <justin.aj@hotmail.com>
* Written by Jessica James <jessica.aj@outlook.com>
*/
#if !defined _RENX_TAGS_H_HEADER

4
RenX.DNS/RenX_DNS.cpp

@ -1,5 +1,5 @@
/**
* Copyright (C) 2014-2015 Justin James.
* Copyright (C) 2014-2015 Jessica James.
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
@ -13,7 +13,7 @@
* OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
* Written by Justin James <justin.aj@hotmail.com>
* Written by Jessica James <jessica.aj@outlook.com>
*/
#include <thread>

4
RenX.DNS/RenX_DNS.h

@ -1,5 +1,5 @@
/**
* Copyright (C) 2014-2015 Justin James.
* Copyright (C) 2014-2015 Jessica James.
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
@ -13,7 +13,7 @@
* OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
* Written by Justin James <justin.aj@hotmail.com>
* Written by Jessica James <jessica.aj@outlook.com>
*/
#if !defined _RENX_DNS_H_HEADER

4
RenX.ExcessiveHeadshots/ExcessiveHeadshots.cpp

@ -1,5 +1,5 @@
/**
* Copyright (C) 2014-2015 Justin James.
* Copyright (C) 2014-2015 Jessica James.
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
@ -13,7 +13,7 @@
* OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
* Written by Justin James <justin.aj@hotmail.com>
* Written by Jessica James <jessica.aj@outlook.com>
*/
#include <ctime>

4
RenX.ExcessiveHeadshots/ExcessiveHeadshots.h

@ -1,5 +1,5 @@
/**
* Copyright (C) 2014-2015 Justin James.
* Copyright (C) 2014-2015 Jessica James.
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
@ -13,7 +13,7 @@
* OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
* Written by Justin James <justin.aj@hotmail.com>
* Written by Jessica James <jessica.aj@outlook.com>
*/
#if !defined _EXCESSIVEHEADSHOTS_H_HEADER

4
RenX.ExtraLogging/RenX_ExtraLogging.cpp

@ -1,5 +1,5 @@
/**
* Copyright (C) 2014-2015 Justin James.
* Copyright (C) 2014-2015 Jessica James.
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
@ -13,7 +13,7 @@
* OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
* Written by Justin James <justin.aj@hotmail.com>
* Written by Jessica James <jessica.aj@outlook.com>
*/
#include "Jupiter/IRC_Client.h"

4
RenX.ExtraLogging/RenX_ExtraLogging.h

@ -1,5 +1,5 @@
/**
* Copyright (C) 2014-2015 Justin James.
* Copyright (C) 2014-2015 Jessica James.
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
@ -13,7 +13,7 @@
* OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
* Written by Justin James <justin.aj@hotmail.com>
* Written by Jessica James <jessica.aj@outlook.com>
*/
#if !defined _RENX_EXTRALOGGING_H_HEADER

4
RenX.Greetings/RenX_Greetings.cpp

@ -1,5 +1,5 @@
/**
* Copyright (C) 2014-2015 Justin James.
* Copyright (C) 2014-2015 Jessica James.
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
@ -13,7 +13,7 @@
* OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
* Written by Justin James <justin.aj@hotmail.com>
* Written by Jessica James <jessica.aj@outlook.com>
*/
#include "Jupiter/IRC_Client.h"

4
RenX.Greetings/RenX_Greetings.h

@ -1,5 +1,5 @@
/**
* Copyright (C) 2014-2015 Justin James.
* Copyright (C) 2014-2015 Jessica James.
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
@ -13,7 +13,7 @@
* OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
* Written by Justin James <justin.aj@hotmail.com>
* Written by Jessica James <jessica.aj@outlook.com>
*/
#if !defined _RENX_GREETING_H_HEADER

4
RenX.HybridUUID/RenX_HybridUUID.cpp

@ -1,5 +1,5 @@
/**
* Copyright (C) 2015 Justin James.
* Copyright (C) 2015 Jessica James.
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
@ -13,7 +13,7 @@
* OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
* Written by Justin James <justin.aj@hotmail.com>
* Written by Jessica James <jessica.aj@outlook.com>
*/
#include "Jupiter/String.h"

4
RenX.HybridUUID/RenX_HybridUUID.h

@ -1,5 +1,5 @@
/**
* Copyright (C) 2015 Justin James.
* Copyright (C) 2015 Jessica James.
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
@ -13,7 +13,7 @@
* OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
* Written by Justin James <justin.aj@hotmail.com>
* Written by Jessica James <jessica.aj@outlook.com>
*/
#if !defined _RENX_HYBRIDUUID_H_HEADER

4
RenX.IRCJoin/RenX_IRCJoin.cpp

@ -1,5 +1,5 @@
/**
* Copyright (C) 2014-2015 Justin James.
* Copyright (C) 2014-2015 Jessica James.
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
@ -13,7 +13,7 @@
* OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
* Written by Justin James <justin.aj@hotmail.com>
* Written by Jessica James <jessica.aj@outlook.com>
*/
#include "Jupiter/IRC_Client.h"

4
RenX.IRCJoin/RenX_IRCJoin.h

@ -1,5 +1,5 @@
/**
* Copyright (C) 2014-2015 Justin James.
* Copyright (C) 2014-2015 Jessica James.
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
@ -13,7 +13,7 @@
* OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
* Written by Justin James <justin.aj@hotmail.com>
* Written by Jessica James <jessica.aj@outlook.com>
*/
#if !defined _RENX_IRCJOIN_H_HEADER

4
RenX.Ladder/RenX_Ladder.cpp

@ -1,5 +1,5 @@
/**
* Copyright (C) 2015 Justin James.
* Copyright (C) 2015 Jessica James.
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
@ -13,7 +13,7 @@
* OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
* Written by Justin James <justin.aj@hotmail.com>
* Written by Jessica James <jessica.aj@outlook.com>
*/
#include "Console_Command.h"

4
RenX.Ladder/RenX_Ladder.h

@ -1,5 +1,5 @@
/**
* Copyright (C) 2015 Justin James.
* Copyright (C) 2015 Jessica James.
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
@ -13,7 +13,7 @@
* OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
* Written by Justin James <justin.aj@hotmail.com>
* Written by Jessica James <jessica.aj@outlook.com>
*/
#if !defined _RENX_LADDER_H_HEADER

4
RenX.Ladder/RenX_LadderDatabase.cpp

@ -1,5 +1,5 @@
/**
* Copyright (C) 2015 Justin James.
* Copyright (C) 2015 Jessica James.
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
@ -13,7 +13,7 @@
* OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
* Written by Justin James <justin.aj@hotmail.com>
* Written by Jessica James <jessica.aj@outlook.com>
*/
#include "RenX_LadderDatabase.h"

4
RenX.Ladder/RenX_LadderDatabase.h

@ -1,5 +1,5 @@
/**
* Copyright (C) 2015 Justin James.
* Copyright (C) 2015 Jessica James.
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
@ -13,7 +13,7 @@
* OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
* Written by Justin James <justin.aj@hotmail.com>
* Written by Jessica James <jessica.aj@outlook.com>
*/
#if !defined _RENX_LADDERDATABASE_H_HEADER

4
RenX.Listen/RenX_Listen.cpp

@ -1,5 +1,5 @@
/**
* Copyright (C) 2015 Justin James.
* Copyright (C) 2015 Jessica James.
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
@ -13,7 +13,7 @@
* OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
* Written by Justin James <justin.aj@hotmail.com>
* Written by Jessica James <jessica.aj@outlook.com>
*/
#include "Jupiter/IRC_Client.h"

4
RenX.Listen/RenX_Listen.h

@ -1,5 +1,5 @@
/**
* Copyright (C) 2015 Justin James.
* Copyright (C) 2015 Jessica James.
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
@ -13,7 +13,7 @@
* OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
* Written by Justin James <justin.aj@hotmail.com>
* Written by Jessica James <jessica.aj@outlook.com>
*/
#if !defined _EXAMPLE_H_HEADER

4
RenX.Logging/RenX_Logging.cpp

@ -1,5 +1,5 @@
/**
* Copyright (C) 2014-2015 Justin James.
* Copyright (C) 2014-2015 Jessica James.
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
@ -13,7 +13,7 @@
* OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
* Written by Justin James <justin.aj@hotmail.com>
* Written by Jessica James <jessica.aj@outlook.com>
*/
#include "Jupiter/INIFile.h"

4
RenX.Logging/RenX_Logging.h

@ -1,5 +1,5 @@
/**
* Copyright (C) 2014-2015 Justin James.
* Copyright (C) 2014-2015 Jessica James.
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
@ -13,7 +13,7 @@
* OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
* Written by Justin James <justin.aj@hotmail.com>
* Written by Jessica James <jessica.aj@outlook.com>
*/
#if !defined _RENX_LOGGING_H_HEADER

4
RenX.Medals/RenX_Medals.cpp

@ -1,5 +1,5 @@
/**
* Copyright (C) 2014-2015 Justin James.
* Copyright (C) 2014-2015 Jessica James.
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
@ -13,7 +13,7 @@
* OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
* Written by Justin James <justin.aj@hotmail.com>
* Written by Jessica James <jessica.aj@outlook.com>
*/
#include <ctime>

4
RenX.Medals/RenX_Medals.h

@ -1,5 +1,5 @@
/**
* Copyright (C) 2014-2015 Justin James.
* Copyright (C) 2014-2015 Jessica James.
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
@ -13,7 +13,7 @@
* OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
* Written by Justin James <justin.aj@hotmail.com>
* Written by Jessica James <jessica.aj@outlook.com>
*/
#if !defined _RENX_MEDALS_H_HEADER

4
RenX.MinPlayers/RenX_MinPlayers.cpp

@ -1,5 +1,5 @@
/**
* Copyright (C) 2015 Justin James.
* Copyright (C) 2015 Jessica James.
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
@ -13,7 +13,7 @@
* OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
* Written by Justin James <justin.aj@hotmail.com>
* Written by Jessica James <jessica.aj@outlook.com>
*/
#include "Jupiter/IRC_Client.h"

4
RenX.MinPlayers/RenX_MinPlayers.h

@ -1,5 +1,5 @@
/**
* Copyright (C) 2015 Justin James.
* Copyright (C) 2015 Jessica James.
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
@ -13,7 +13,7 @@
* OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
* Written by Justin James <justin.aj@hotmail.com>
* Written by Jessica James <jessica.aj@outlook.com>
*/
#if !defined _RENX_MINPLAYERS_H_HEADER

4
RenX.ModSystem/RenX_ModSystem.cpp

@ -1,5 +1,5 @@
/**
* Copyright (C) 2014-2015 Justin James.
* Copyright (C) 2014-2015 Jessica James.
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
@ -13,7 +13,7 @@
* OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
* Written by Justin James <justin.aj@hotmail.com>
* Written by Jessica James <jessica.aj@outlook.com>
*/
#include "Jupiter/IRC_Client.h"

4
RenX.ModSystem/RenX_ModSystem.h

@ -1,5 +1,5 @@
/**
* Copyright (C) 2014-2015 Justin James.
* Copyright (C) 2014-2015 Jessica James.
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
@ -13,7 +13,7 @@
* OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
* Written by Justin James <justin.aj@hotmail.com>
* Written by Jessica James <jessica.aj@outlook.com>
*/
#if !defined _RENX_MODSYSTEM_H_HEADER

4
RenX.NicknameUUID/RenX_NicknameUUID.cpp

@ -1,5 +1,5 @@
/**
* Copyright (C) 2015 Justin James.
* Copyright (C) 2015 Jessica James.
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
@ -13,7 +13,7 @@
* OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
* Written by Justin James <justin.aj@hotmail.com>
* Written by Jessica James <jessica.aj@outlook.com>
*/
#include "Jupiter/String.h"

4
RenX.NicknameUUID/RenX_NicknameUUID.h

@ -1,5 +1,5 @@
/**
* Copyright (C) 2015 Justin James.
* Copyright (C) 2015 Jessica James.
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
@ -13,7 +13,7 @@
* OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
* Written by Justin James <justin.aj@hotmail.com>
* Written by Jessica James <jessica.aj@outlook.com>
*/
#if !defined _RENX_NICKNAMEUUID_H_HEADER

2
RenX.Plugin.Template/Example.cpp

@ -3,7 +3,7 @@
* support, and with no warranty, express or implied, as to its usefulness for
* any purpose.
*
* Written by Justin James <justin.aj@hotmail.com>
* Written by Jessica James <jessica.aj@outlook.com>
*/
#include "Example.h"

2
RenX.Plugin.Template/Example.h

@ -3,7 +3,7 @@
* support, and with no warranty, express or implied, as to its usefulness for
* any purpose.
*
* Written by Justin James <justin.aj@hotmail.com>
* Written by Jessica James <jessica.aj@outlook.com>
*/
#if !defined _EXAMPLE_H_HEADER

4
RenX.SetJoin/RenX_SetJoin.cpp

@ -1,5 +1,5 @@
/**
* Copyright (C) 2014-2015 Justin James.
* Copyright (C) 2014-2015 Jessica James.
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
@ -13,7 +13,7 @@
* OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
* Written by Justin James <justin.aj@hotmail.com>
* Written by Jessica James <jessica.aj@outlook.com>
*/
#include "Jupiter/IRC_Client.h"

4
RenX.SetJoin/RenX_SetJoin.h

@ -1,5 +1,5 @@
/**
* Copyright (C) 2014-2015 Justin James.
* Copyright (C) 2014-2015 Jessica James.
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
@ -13,7 +13,7 @@
* OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
* Written by Justin James <justin.aj@hotmail.com>
* Written by Jessica James <jessica.aj@outlook.com>
*/
#if !defined _RENX_SETJOIN_H_HEADER

4
RenX.Warn/RenX_Warn.cpp

@ -1,5 +1,5 @@
/**
* Copyright (C) 2014-2015 Justin James.
* Copyright (C) 2014-2015 Jessica James.
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
@ -13,7 +13,7 @@
* OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
* Written by Justin James <justin.aj@hotmail.com>
* Written by Jessica James <jessica.aj@outlook.com>
*/
#include "IRC_Bot.h"

4
RenX.Warn/RenX_Warn.h

@ -1,5 +1,5 @@
/**
* Copyright (C) 2014-2015 Justin James.
* Copyright (C) 2014-2015 Jessica James.
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
@ -13,7 +13,7 @@
* OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
* Written by Justin James <justin.aj@hotmail.com>
* Written by Jessica James <jessica.aj@outlook.com>
*/
#if !defined _RENX_WARN_H_HEADER

4
SetJoin/SetJoin.cpp

@ -1,5 +1,5 @@
/**
* Copyright (C) 2014-2015 Justin James.
* Copyright (C) 2014-2015 Jessica James.
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
@ -13,7 +13,7 @@
* OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
* Written by Justin James <justin.aj@hotmail.com>
* Written by Jessica James <jessica.aj@outlook.com>
*/
#include <cstring>

4
SetJoin/SetJoin.h

@ -1,5 +1,5 @@
/**
* Copyright (C) 2014-2015 Justin James.
* Copyright (C) 2014-2015 Jessica James.
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
@ -13,7 +13,7 @@
* OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
* Written by Justin James <justin.aj@hotmail.com>
* Written by Jessica James <jessica.aj@outlook.com>
*/
#if !defined _SETJOIN_H_HEADER

Loading…
Cancel
Save