├── .editorconfig ├── .example.config.json ├── .gitattributes ├── .github └── ISSUE_TEMPLATE │ ├── bug.yaml │ └── config.yml ├── .gitignore ├── APACHE-LICENSE ├── CMakeLists.txt ├── CODE_OF_CONDUCT.md ├── MIT-LICENSE ├── README.md ├── Raiden Shogun.rc ├── SECURITY.md ├── appveyor.yml ├── commands ├── information │ ├── about.h │ ├── infouser.h │ └── ping.h └── moderation │ ├── ban.h │ ├── deafen.h │ ├── disconnect.h │ ├── kick.h │ ├── move.h │ ├── mute.h │ ├── nickname.h │ ├── prune.h │ ├── timeout.h │ ├── unban.h │ ├── undeafen.h │ └── unmute.h ├── handler ├── btnHandler.h ├── builder.h └── handler.h ├── include ├── dpp │ ├── appcommand.h │ ├── application.h │ ├── auditlog.h │ ├── automod.h │ ├── ban.h │ ├── cache.h │ ├── channel.h │ ├── cluster.h │ ├── cluster_coro_calls.h │ ├── cluster_sync_calls.h │ ├── collector.h │ ├── colors.h │ ├── commandhandler.h │ ├── coro.h │ ├── discordclient.h │ ├── discordevents.h │ ├── discordvoiceclient.h │ ├── dispatcher.h │ ├── dns.h │ ├── dpp.h │ ├── dtemplate.h │ ├── emoji.h │ ├── etf.h │ ├── event.h │ ├── event_router.h │ ├── exception.h │ ├── export.h │ ├── guild.h │ ├── httpsclient.h │ ├── integration.h │ ├── intents.h │ ├── invite.h │ ├── json_interface.h │ ├── managed.h │ ├── message.h │ ├── misc-enum.h │ ├── nlohmann │ │ ├── json.hpp │ │ └── json_fwd.hpp │ ├── once.h │ ├── permissions.h │ ├── presence.h │ ├── prune.h │ ├── queues.h │ ├── restrequest.h │ ├── restresults.h │ ├── role.h │ ├── scheduled_event.h │ ├── snowflake.h │ ├── socket.h │ ├── sslclient.h │ ├── stage_instance.h │ ├── stringops.h │ ├── sync.h │ ├── sysdep.h │ ├── timed_listener.h │ ├── timer.h │ ├── user.h │ ├── utility.h │ ├── version.h │ ├── voiceregion.h │ ├── voicestate.h │ ├── webhook.h │ ├── win32_safe_warnings.h │ └── wsclient.h ├── harshfeudal │ ├── base64.h │ └── harshfeudal.h └── spdlog │ ├── async.h │ ├── async_logger-inl.h │ ├── async_logger.h │ ├── cfg │ ├── argv.h │ ├── env.h │ ├── helpers-inl.h │ └── helpers.h │ ├── common-inl.h │ ├── common.h │ ├── details │ ├── backtracer-inl.h │ ├── backtracer.h │ ├── circular_q.h │ ├── console_globals.h │ ├── file_helper-inl.h │ ├── file_helper.h │ ├── fmt_helper.h │ ├── log_msg-inl.h │ ├── log_msg.h │ ├── log_msg_buffer-inl.h │ ├── log_msg_buffer.h │ ├── mpmc_blocking_q.h │ ├── null_mutex.h │ ├── os-inl.h │ ├── os.h │ ├── periodic_worker-inl.h │ ├── periodic_worker.h │ ├── registry-inl.h │ ├── registry.h │ ├── synchronous_factory.h │ ├── tcp_client-windows.h │ ├── tcp_client.h │ ├── thread_pool-inl.h │ ├── thread_pool.h │ ├── udp_client-windows.h │ ├── udp_client.h │ └── windows_include.h │ ├── fmt │ ├── bin_to_hex.h │ ├── bundled │ │ ├── args.h │ │ ├── chrono.h │ │ ├── color.h │ │ ├── compile.h │ │ ├── core.h │ │ ├── fmt.license.rst │ │ ├── format-inl.h │ │ ├── format.h │ │ ├── locale.h │ │ ├── os.h │ │ ├── ostream.h │ │ ├── printf.h │ │ ├── ranges.h │ │ └── xchar.h │ ├── chrono.h │ ├── compile.h │ ├── fmt.h │ ├── ostr.h │ ├── ranges.h │ └── xchar.h │ ├── formatter.h │ ├── fwd.h │ ├── logger-inl.h │ ├── logger.h │ ├── pattern_formatter-inl.h │ ├── pattern_formatter.h │ ├── sinks │ ├── android_sink.h │ ├── ansicolor_sink-inl.h │ ├── ansicolor_sink.h │ ├── base_sink-inl.h │ ├── base_sink.h │ ├── basic_file_sink-inl.h │ ├── basic_file_sink.h │ ├── daily_file_sink.h │ ├── dist_sink.h │ ├── dup_filter_sink.h │ ├── hourly_file_sink.h │ ├── mongo_sink.h │ ├── msvc_sink.h │ ├── null_sink.h │ ├── ostream_sink.h │ ├── qt_sinks.h │ ├── ringbuffer_sink.h │ ├── rotating_file_sink-inl.h │ ├── rotating_file_sink.h │ ├── sink-inl.h │ ├── sink.h │ ├── stdout_color_sinks-inl.h │ ├── stdout_color_sinks.h │ ├── stdout_sinks-inl.h │ ├── stdout_sinks.h │ ├── syslog_sink.h │ ├── systemd_sink.h │ ├── tcp_sink.h │ ├── udp_sink.h │ ├── win_eventlog_sink.h │ ├── wincolor_sink-inl.h │ └── wincolor_sink.h │ ├── spdlog-inl.h │ ├── spdlog.h │ ├── stopwatch.h │ ├── tweakme.h │ └── version.h ├── lib └── dpp.lib ├── premake5.lua ├── raiden.ico ├── resource.h └── src ├── information ├── about.cpp ├── infouser.cpp └── ping.cpp ├── main.cpp └── moderation ├── ban.cpp ├── deafen.cpp ├── disconnect.cpp ├── kick.cpp ├── move.cpp ├── mute.cpp ├── nickname.cpp ├── prune.cpp ├── timeout.cpp ├── unban.cpp ├── undeafen.cpp └── unmute.cpp /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/.editorconfig -------------------------------------------------------------------------------- /.example.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/.example.config.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/.github/ISSUE_TEMPLATE/bug.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/.gitignore -------------------------------------------------------------------------------- /APACHE-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/APACHE-LICENSE -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /MIT-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/MIT-LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/README.md -------------------------------------------------------------------------------- /Raiden Shogun.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/Raiden Shogun.rc -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/SECURITY.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/appveyor.yml -------------------------------------------------------------------------------- /commands/information/about.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/commands/information/about.h -------------------------------------------------------------------------------- /commands/information/infouser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/commands/information/infouser.h -------------------------------------------------------------------------------- /commands/information/ping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/commands/information/ping.h -------------------------------------------------------------------------------- /commands/moderation/ban.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/commands/moderation/ban.h -------------------------------------------------------------------------------- /commands/moderation/deafen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/commands/moderation/deafen.h -------------------------------------------------------------------------------- /commands/moderation/disconnect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/commands/moderation/disconnect.h -------------------------------------------------------------------------------- /commands/moderation/kick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/commands/moderation/kick.h -------------------------------------------------------------------------------- /commands/moderation/move.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/commands/moderation/move.h -------------------------------------------------------------------------------- /commands/moderation/mute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/commands/moderation/mute.h -------------------------------------------------------------------------------- /commands/moderation/nickname.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/commands/moderation/nickname.h -------------------------------------------------------------------------------- /commands/moderation/prune.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/commands/moderation/prune.h -------------------------------------------------------------------------------- /commands/moderation/timeout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/commands/moderation/timeout.h -------------------------------------------------------------------------------- /commands/moderation/unban.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/commands/moderation/unban.h -------------------------------------------------------------------------------- /commands/moderation/undeafen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/commands/moderation/undeafen.h -------------------------------------------------------------------------------- /commands/moderation/unmute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/commands/moderation/unmute.h -------------------------------------------------------------------------------- /handler/btnHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/handler/btnHandler.h -------------------------------------------------------------------------------- /handler/builder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/handler/builder.h -------------------------------------------------------------------------------- /handler/handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/handler/handler.h -------------------------------------------------------------------------------- /include/dpp/appcommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/dpp/appcommand.h -------------------------------------------------------------------------------- /include/dpp/application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/dpp/application.h -------------------------------------------------------------------------------- /include/dpp/auditlog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/dpp/auditlog.h -------------------------------------------------------------------------------- /include/dpp/automod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/dpp/automod.h -------------------------------------------------------------------------------- /include/dpp/ban.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/dpp/ban.h -------------------------------------------------------------------------------- /include/dpp/cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/dpp/cache.h -------------------------------------------------------------------------------- /include/dpp/channel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/dpp/channel.h -------------------------------------------------------------------------------- /include/dpp/cluster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/dpp/cluster.h -------------------------------------------------------------------------------- /include/dpp/cluster_coro_calls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/dpp/cluster_coro_calls.h -------------------------------------------------------------------------------- /include/dpp/cluster_sync_calls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/dpp/cluster_sync_calls.h -------------------------------------------------------------------------------- /include/dpp/collector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/dpp/collector.h -------------------------------------------------------------------------------- /include/dpp/colors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/dpp/colors.h -------------------------------------------------------------------------------- /include/dpp/commandhandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/dpp/commandhandler.h -------------------------------------------------------------------------------- /include/dpp/coro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/dpp/coro.h -------------------------------------------------------------------------------- /include/dpp/discordclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/dpp/discordclient.h -------------------------------------------------------------------------------- /include/dpp/discordevents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/dpp/discordevents.h -------------------------------------------------------------------------------- /include/dpp/discordvoiceclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/dpp/discordvoiceclient.h -------------------------------------------------------------------------------- /include/dpp/dispatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/dpp/dispatcher.h -------------------------------------------------------------------------------- /include/dpp/dns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/dpp/dns.h -------------------------------------------------------------------------------- /include/dpp/dpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/dpp/dpp.h -------------------------------------------------------------------------------- /include/dpp/dtemplate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/dpp/dtemplate.h -------------------------------------------------------------------------------- /include/dpp/emoji.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/dpp/emoji.h -------------------------------------------------------------------------------- /include/dpp/etf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/dpp/etf.h -------------------------------------------------------------------------------- /include/dpp/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/dpp/event.h -------------------------------------------------------------------------------- /include/dpp/event_router.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/dpp/event_router.h -------------------------------------------------------------------------------- /include/dpp/exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/dpp/exception.h -------------------------------------------------------------------------------- /include/dpp/export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/dpp/export.h -------------------------------------------------------------------------------- /include/dpp/guild.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/dpp/guild.h -------------------------------------------------------------------------------- /include/dpp/httpsclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/dpp/httpsclient.h -------------------------------------------------------------------------------- /include/dpp/integration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/dpp/integration.h -------------------------------------------------------------------------------- /include/dpp/intents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/dpp/intents.h -------------------------------------------------------------------------------- /include/dpp/invite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/dpp/invite.h -------------------------------------------------------------------------------- /include/dpp/json_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/dpp/json_interface.h -------------------------------------------------------------------------------- /include/dpp/managed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/dpp/managed.h -------------------------------------------------------------------------------- /include/dpp/message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/dpp/message.h -------------------------------------------------------------------------------- /include/dpp/misc-enum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/dpp/misc-enum.h -------------------------------------------------------------------------------- /include/dpp/nlohmann/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/dpp/nlohmann/json.hpp -------------------------------------------------------------------------------- /include/dpp/nlohmann/json_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/dpp/nlohmann/json_fwd.hpp -------------------------------------------------------------------------------- /include/dpp/once.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/dpp/once.h -------------------------------------------------------------------------------- /include/dpp/permissions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/dpp/permissions.h -------------------------------------------------------------------------------- /include/dpp/presence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/dpp/presence.h -------------------------------------------------------------------------------- /include/dpp/prune.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/dpp/prune.h -------------------------------------------------------------------------------- /include/dpp/queues.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/dpp/queues.h -------------------------------------------------------------------------------- /include/dpp/restrequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/dpp/restrequest.h -------------------------------------------------------------------------------- /include/dpp/restresults.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/dpp/restresults.h -------------------------------------------------------------------------------- /include/dpp/role.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/dpp/role.h -------------------------------------------------------------------------------- /include/dpp/scheduled_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/dpp/scheduled_event.h -------------------------------------------------------------------------------- /include/dpp/snowflake.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/dpp/snowflake.h -------------------------------------------------------------------------------- /include/dpp/socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/dpp/socket.h -------------------------------------------------------------------------------- /include/dpp/sslclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/dpp/sslclient.h -------------------------------------------------------------------------------- /include/dpp/stage_instance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/dpp/stage_instance.h -------------------------------------------------------------------------------- /include/dpp/stringops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/dpp/stringops.h -------------------------------------------------------------------------------- /include/dpp/sync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/dpp/sync.h -------------------------------------------------------------------------------- /include/dpp/sysdep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/dpp/sysdep.h -------------------------------------------------------------------------------- /include/dpp/timed_listener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/dpp/timed_listener.h -------------------------------------------------------------------------------- /include/dpp/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/dpp/timer.h -------------------------------------------------------------------------------- /include/dpp/user.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/dpp/user.h -------------------------------------------------------------------------------- /include/dpp/utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/dpp/utility.h -------------------------------------------------------------------------------- /include/dpp/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/dpp/version.h -------------------------------------------------------------------------------- /include/dpp/voiceregion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/dpp/voiceregion.h -------------------------------------------------------------------------------- /include/dpp/voicestate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/dpp/voicestate.h -------------------------------------------------------------------------------- /include/dpp/webhook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/dpp/webhook.h -------------------------------------------------------------------------------- /include/dpp/win32_safe_warnings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/dpp/win32_safe_warnings.h -------------------------------------------------------------------------------- /include/dpp/wsclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/dpp/wsclient.h -------------------------------------------------------------------------------- /include/harshfeudal/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/harshfeudal/base64.h -------------------------------------------------------------------------------- /include/harshfeudal/harshfeudal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/harshfeudal/harshfeudal.h -------------------------------------------------------------------------------- /include/spdlog/async.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/spdlog/async.h -------------------------------------------------------------------------------- /include/spdlog/async_logger-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/spdlog/async_logger-inl.h -------------------------------------------------------------------------------- /include/spdlog/async_logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/spdlog/async_logger.h -------------------------------------------------------------------------------- /include/spdlog/cfg/argv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/spdlog/cfg/argv.h -------------------------------------------------------------------------------- /include/spdlog/cfg/env.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/spdlog/cfg/env.h -------------------------------------------------------------------------------- /include/spdlog/cfg/helpers-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/spdlog/cfg/helpers-inl.h -------------------------------------------------------------------------------- /include/spdlog/cfg/helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/spdlog/cfg/helpers.h -------------------------------------------------------------------------------- /include/spdlog/common-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/spdlog/common-inl.h -------------------------------------------------------------------------------- /include/spdlog/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/spdlog/common.h -------------------------------------------------------------------------------- /include/spdlog/details/backtracer-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/spdlog/details/backtracer-inl.h -------------------------------------------------------------------------------- /include/spdlog/details/backtracer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/spdlog/details/backtracer.h -------------------------------------------------------------------------------- /include/spdlog/details/circular_q.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/spdlog/details/circular_q.h -------------------------------------------------------------------------------- /include/spdlog/details/console_globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/spdlog/details/console_globals.h -------------------------------------------------------------------------------- /include/spdlog/details/file_helper-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/spdlog/details/file_helper-inl.h -------------------------------------------------------------------------------- /include/spdlog/details/file_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/spdlog/details/file_helper.h -------------------------------------------------------------------------------- /include/spdlog/details/fmt_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/spdlog/details/fmt_helper.h -------------------------------------------------------------------------------- /include/spdlog/details/log_msg-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/spdlog/details/log_msg-inl.h -------------------------------------------------------------------------------- /include/spdlog/details/log_msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/spdlog/details/log_msg.h -------------------------------------------------------------------------------- /include/spdlog/details/log_msg_buffer-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/spdlog/details/log_msg_buffer-inl.h -------------------------------------------------------------------------------- /include/spdlog/details/log_msg_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/spdlog/details/log_msg_buffer.h -------------------------------------------------------------------------------- /include/spdlog/details/mpmc_blocking_q.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/spdlog/details/mpmc_blocking_q.h -------------------------------------------------------------------------------- /include/spdlog/details/null_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/spdlog/details/null_mutex.h -------------------------------------------------------------------------------- /include/spdlog/details/os-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/spdlog/details/os-inl.h -------------------------------------------------------------------------------- /include/spdlog/details/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/spdlog/details/os.h -------------------------------------------------------------------------------- /include/spdlog/details/periodic_worker-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/spdlog/details/periodic_worker-inl.h -------------------------------------------------------------------------------- /include/spdlog/details/periodic_worker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/spdlog/details/periodic_worker.h -------------------------------------------------------------------------------- /include/spdlog/details/registry-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/spdlog/details/registry-inl.h -------------------------------------------------------------------------------- /include/spdlog/details/registry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/spdlog/details/registry.h -------------------------------------------------------------------------------- /include/spdlog/details/synchronous_factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/spdlog/details/synchronous_factory.h -------------------------------------------------------------------------------- /include/spdlog/details/tcp_client-windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/spdlog/details/tcp_client-windows.h -------------------------------------------------------------------------------- /include/spdlog/details/tcp_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/spdlog/details/tcp_client.h -------------------------------------------------------------------------------- /include/spdlog/details/thread_pool-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/spdlog/details/thread_pool-inl.h -------------------------------------------------------------------------------- /include/spdlog/details/thread_pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/spdlog/details/thread_pool.h -------------------------------------------------------------------------------- /include/spdlog/details/udp_client-windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/spdlog/details/udp_client-windows.h -------------------------------------------------------------------------------- /include/spdlog/details/udp_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/spdlog/details/udp_client.h -------------------------------------------------------------------------------- /include/spdlog/details/windows_include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/spdlog/details/windows_include.h -------------------------------------------------------------------------------- /include/spdlog/fmt/bin_to_hex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/spdlog/fmt/bin_to_hex.h -------------------------------------------------------------------------------- /include/spdlog/fmt/bundled/args.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/spdlog/fmt/bundled/args.h -------------------------------------------------------------------------------- /include/spdlog/fmt/bundled/chrono.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/spdlog/fmt/bundled/chrono.h -------------------------------------------------------------------------------- /include/spdlog/fmt/bundled/color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/spdlog/fmt/bundled/color.h -------------------------------------------------------------------------------- /include/spdlog/fmt/bundled/compile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/spdlog/fmt/bundled/compile.h -------------------------------------------------------------------------------- /include/spdlog/fmt/bundled/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/spdlog/fmt/bundled/core.h -------------------------------------------------------------------------------- /include/spdlog/fmt/bundled/fmt.license.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/spdlog/fmt/bundled/fmt.license.rst -------------------------------------------------------------------------------- /include/spdlog/fmt/bundled/format-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/spdlog/fmt/bundled/format-inl.h -------------------------------------------------------------------------------- /include/spdlog/fmt/bundled/format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/spdlog/fmt/bundled/format.h -------------------------------------------------------------------------------- /include/spdlog/fmt/bundled/locale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/spdlog/fmt/bundled/locale.h -------------------------------------------------------------------------------- /include/spdlog/fmt/bundled/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/spdlog/fmt/bundled/os.h -------------------------------------------------------------------------------- /include/spdlog/fmt/bundled/ostream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/spdlog/fmt/bundled/ostream.h -------------------------------------------------------------------------------- /include/spdlog/fmt/bundled/printf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/spdlog/fmt/bundled/printf.h -------------------------------------------------------------------------------- /include/spdlog/fmt/bundled/ranges.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/spdlog/fmt/bundled/ranges.h -------------------------------------------------------------------------------- /include/spdlog/fmt/bundled/xchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/spdlog/fmt/bundled/xchar.h -------------------------------------------------------------------------------- /include/spdlog/fmt/chrono.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/spdlog/fmt/chrono.h -------------------------------------------------------------------------------- /include/spdlog/fmt/compile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/spdlog/fmt/compile.h -------------------------------------------------------------------------------- /include/spdlog/fmt/fmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/spdlog/fmt/fmt.h -------------------------------------------------------------------------------- /include/spdlog/fmt/ostr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/spdlog/fmt/ostr.h -------------------------------------------------------------------------------- /include/spdlog/fmt/ranges.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/spdlog/fmt/ranges.h -------------------------------------------------------------------------------- /include/spdlog/fmt/xchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/spdlog/fmt/xchar.h -------------------------------------------------------------------------------- /include/spdlog/formatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/spdlog/formatter.h -------------------------------------------------------------------------------- /include/spdlog/fwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/spdlog/fwd.h -------------------------------------------------------------------------------- /include/spdlog/logger-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/spdlog/logger-inl.h -------------------------------------------------------------------------------- /include/spdlog/logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/spdlog/logger.h -------------------------------------------------------------------------------- /include/spdlog/pattern_formatter-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/spdlog/pattern_formatter-inl.h -------------------------------------------------------------------------------- /include/spdlog/pattern_formatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/spdlog/pattern_formatter.h -------------------------------------------------------------------------------- /include/spdlog/sinks/android_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/spdlog/sinks/android_sink.h -------------------------------------------------------------------------------- /include/spdlog/sinks/ansicolor_sink-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/spdlog/sinks/ansicolor_sink-inl.h -------------------------------------------------------------------------------- /include/spdlog/sinks/ansicolor_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/spdlog/sinks/ansicolor_sink.h -------------------------------------------------------------------------------- /include/spdlog/sinks/base_sink-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/spdlog/sinks/base_sink-inl.h -------------------------------------------------------------------------------- /include/spdlog/sinks/base_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/spdlog/sinks/base_sink.h -------------------------------------------------------------------------------- /include/spdlog/sinks/basic_file_sink-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/spdlog/sinks/basic_file_sink-inl.h -------------------------------------------------------------------------------- /include/spdlog/sinks/basic_file_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/spdlog/sinks/basic_file_sink.h -------------------------------------------------------------------------------- /include/spdlog/sinks/daily_file_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/spdlog/sinks/daily_file_sink.h -------------------------------------------------------------------------------- /include/spdlog/sinks/dist_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/spdlog/sinks/dist_sink.h -------------------------------------------------------------------------------- /include/spdlog/sinks/dup_filter_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/spdlog/sinks/dup_filter_sink.h -------------------------------------------------------------------------------- /include/spdlog/sinks/hourly_file_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/spdlog/sinks/hourly_file_sink.h -------------------------------------------------------------------------------- /include/spdlog/sinks/mongo_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/spdlog/sinks/mongo_sink.h -------------------------------------------------------------------------------- /include/spdlog/sinks/msvc_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/spdlog/sinks/msvc_sink.h -------------------------------------------------------------------------------- /include/spdlog/sinks/null_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/spdlog/sinks/null_sink.h -------------------------------------------------------------------------------- /include/spdlog/sinks/ostream_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/spdlog/sinks/ostream_sink.h -------------------------------------------------------------------------------- /include/spdlog/sinks/qt_sinks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/spdlog/sinks/qt_sinks.h -------------------------------------------------------------------------------- /include/spdlog/sinks/ringbuffer_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/spdlog/sinks/ringbuffer_sink.h -------------------------------------------------------------------------------- /include/spdlog/sinks/rotating_file_sink-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/spdlog/sinks/rotating_file_sink-inl.h -------------------------------------------------------------------------------- /include/spdlog/sinks/rotating_file_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/spdlog/sinks/rotating_file_sink.h -------------------------------------------------------------------------------- /include/spdlog/sinks/sink-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/spdlog/sinks/sink-inl.h -------------------------------------------------------------------------------- /include/spdlog/sinks/sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/spdlog/sinks/sink.h -------------------------------------------------------------------------------- /include/spdlog/sinks/stdout_color_sinks-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/spdlog/sinks/stdout_color_sinks-inl.h -------------------------------------------------------------------------------- /include/spdlog/sinks/stdout_color_sinks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/spdlog/sinks/stdout_color_sinks.h -------------------------------------------------------------------------------- /include/spdlog/sinks/stdout_sinks-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/spdlog/sinks/stdout_sinks-inl.h -------------------------------------------------------------------------------- /include/spdlog/sinks/stdout_sinks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/spdlog/sinks/stdout_sinks.h -------------------------------------------------------------------------------- /include/spdlog/sinks/syslog_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/spdlog/sinks/syslog_sink.h -------------------------------------------------------------------------------- /include/spdlog/sinks/systemd_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/spdlog/sinks/systemd_sink.h -------------------------------------------------------------------------------- /include/spdlog/sinks/tcp_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/spdlog/sinks/tcp_sink.h -------------------------------------------------------------------------------- /include/spdlog/sinks/udp_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/spdlog/sinks/udp_sink.h -------------------------------------------------------------------------------- /include/spdlog/sinks/win_eventlog_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/spdlog/sinks/win_eventlog_sink.h -------------------------------------------------------------------------------- /include/spdlog/sinks/wincolor_sink-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/spdlog/sinks/wincolor_sink-inl.h -------------------------------------------------------------------------------- /include/spdlog/sinks/wincolor_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/spdlog/sinks/wincolor_sink.h -------------------------------------------------------------------------------- /include/spdlog/spdlog-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/spdlog/spdlog-inl.h -------------------------------------------------------------------------------- /include/spdlog/spdlog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/spdlog/spdlog.h -------------------------------------------------------------------------------- /include/spdlog/stopwatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/spdlog/stopwatch.h -------------------------------------------------------------------------------- /include/spdlog/tweakme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/spdlog/tweakme.h -------------------------------------------------------------------------------- /include/spdlog/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/include/spdlog/version.h -------------------------------------------------------------------------------- /lib/dpp.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/lib/dpp.lib -------------------------------------------------------------------------------- /premake5.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/premake5.lua -------------------------------------------------------------------------------- /raiden.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/raiden.ico -------------------------------------------------------------------------------- /resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/resource.h -------------------------------------------------------------------------------- /src/information/about.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/src/information/about.cpp -------------------------------------------------------------------------------- /src/information/infouser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/src/information/infouser.cpp -------------------------------------------------------------------------------- /src/information/ping.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/src/information/ping.cpp -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/moderation/ban.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/src/moderation/ban.cpp -------------------------------------------------------------------------------- /src/moderation/deafen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/src/moderation/deafen.cpp -------------------------------------------------------------------------------- /src/moderation/disconnect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/src/moderation/disconnect.cpp -------------------------------------------------------------------------------- /src/moderation/kick.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/src/moderation/kick.cpp -------------------------------------------------------------------------------- /src/moderation/move.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/src/moderation/move.cpp -------------------------------------------------------------------------------- /src/moderation/mute.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/src/moderation/mute.cpp -------------------------------------------------------------------------------- /src/moderation/nickname.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/src/moderation/nickname.cpp -------------------------------------------------------------------------------- /src/moderation/prune.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/src/moderation/prune.cpp -------------------------------------------------------------------------------- /src/moderation/timeout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/src/moderation/timeout.cpp -------------------------------------------------------------------------------- /src/moderation/unban.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/src/moderation/unban.cpp -------------------------------------------------------------------------------- /src/moderation/undeafen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/src/moderation/undeafen.cpp -------------------------------------------------------------------------------- /src/moderation/unmute.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshfeudal/Raiden-Shogun/HEAD/src/moderation/unmute.cpp --------------------------------------------------------------------------------