├── .gitignore ├── LICENSE ├── README.md ├── protobufs ├── base_gcmessages_csgo.proto ├── c_peer2peer_netmessages.proto ├── clientmessages.proto ├── connectionless_netmessages.proto ├── cs_gameevents.proto ├── cs_prediction_events.proto ├── cs_usercmd.proto ├── cstrike15_gcmessages.proto ├── cstrike15_usermessages.proto ├── demo.proto ├── econ_gcmessages.proto ├── engine_gcmessages.proto ├── fatdemo.proto ├── gameevents.proto ├── gcsdk_gcmessages.proto ├── gcsystemmsgs.proto ├── generated │ ├── base_gcmessages_csgo.pb.cc │ ├── base_gcmessages_csgo.pb.h │ ├── c_peer2peer_netmessages.pb.cc │ ├── c_peer2peer_netmessages.pb.h │ ├── clientmessages.pb.cc │ ├── clientmessages.pb.h │ ├── connectionless_netmessages.pb.cc │ ├── connectionless_netmessages.pb.h │ ├── cs_gameevents.pb.cc │ ├── cs_gameevents.pb.h │ ├── cs_prediction_events.pb.cc │ ├── cs_prediction_events.pb.h │ ├── cs_usercmd.pb.cc │ ├── cs_usercmd.pb.h │ ├── cstrike15_gcmessages.pb.cc │ ├── cstrike15_gcmessages.pb.h │ ├── cstrike15_usermessages.pb.cc │ ├── cstrike15_usermessages.pb.h │ ├── demo.pb.cc │ ├── demo.pb.h │ ├── econ_gcmessages.pb.cc │ ├── econ_gcmessages.pb.h │ ├── engine_gcmessages.pb.cc │ ├── engine_gcmessages.pb.h │ ├── fatdemo.pb.cc │ ├── fatdemo.pb.h │ ├── gameevents.pb.cc │ ├── gameevents.pb.h │ ├── gcsdk_gcmessages.pb.cc │ ├── gcsdk_gcmessages.pb.h │ ├── gcsystemmsgs.pb.cc │ ├── gcsystemmsgs.pb.h │ ├── netmessages.pb.cc │ ├── netmessages.pb.h │ ├── network_connection.pb.cc │ ├── network_connection.pb.h │ ├── networkbasetypes.pb.cc │ ├── networkbasetypes.pb.h │ ├── networksystem_protomessages.pb.cc │ ├── networksystem_protomessages.pb.h │ ├── prediction_events.pb.cc │ ├── prediction_events.pb.h │ ├── steamdatagram_messages_auth.pb.cc │ ├── steamdatagram_messages_auth.pb.h │ ├── steamdatagram_messages_sdr.pb.cc │ ├── steamdatagram_messages_sdr.pb.h │ ├── steammessages.pb.cc │ ├── steammessages.pb.h │ ├── steammessages_cloud.steamworkssdk.pb.cc │ ├── steammessages_cloud.steamworkssdk.pb.h │ ├── steammessages_gamenetworkingui.pb.cc │ ├── steammessages_gamenetworkingui.pb.h │ ├── steammessages_helprequest.steamworkssdk.pb.cc │ ├── steammessages_helprequest.steamworkssdk.pb.h │ ├── steammessages_oauth.steamworkssdk.pb.cc │ ├── steammessages_oauth.steamworkssdk.pb.h │ ├── steammessages_player.steamworkssdk.pb.cc │ ├── steammessages_player.steamworkssdk.pb.h │ ├── steammessages_publishedfile.steamworkssdk.pb.cc │ ├── steammessages_publishedfile.steamworkssdk.pb.h │ ├── steammessages_unified_base.steamworkssdk.pb.cc │ ├── steammessages_unified_base.steamworkssdk.pb.h │ ├── steamnetworkingsockets_messages.pb.cc │ ├── steamnetworkingsockets_messages.pb.h │ ├── steamnetworkingsockets_messages_certs.pb.cc │ ├── steamnetworkingsockets_messages_certs.pb.h │ ├── steamnetworkingsockets_messages_udp.pb.cc │ ├── steamnetworkingsockets_messages_udp.pb.h │ ├── te.pb.cc │ ├── te.pb.h │ ├── uifontfile_format.pb.cc │ ├── uifontfile_format.pb.h │ ├── usercmd.pb.cc │ ├── usercmd.pb.h │ ├── usermessages.pb.cc │ ├── usermessages.pb.h │ ├── valveextensions.pb.cc │ └── valveextensions.pb.h ├── netmessages.proto ├── network_connection.proto ├── networkbasetypes.proto ├── networksystem_protomessages.proto ├── prediction_events.proto ├── protoc │ ├── google │ │ └── protobuf │ │ │ └── descriptor.proto │ ├── protoc │ └── protoc_old ├── protocompile.sh ├── steamdatagram_messages_auth.proto ├── steamdatagram_messages_sdr.proto ├── steammessages.proto ├── steammessages_cloud.steamworkssdk.proto ├── steammessages_gamenetworkingui.proto ├── steammessages_helprequest.steamworkssdk.proto ├── steammessages_oauth.steamworkssdk.proto ├── steammessages_player.steamworkssdk.proto ├── steammessages_publishedfile.steamworkssdk.proto ├── steammessages_unified_base.steamworkssdk.proto ├── steamnetworkingsockets_messages.proto ├── steamnetworkingsockets_messages_certs.proto ├── steamnetworkingsockets_messages_udp.proto ├── te.proto ├── uifontfile_format.proto ├── usercmd.proto ├── usermessages.proto └── valveextensions.proto ├── repo └── packages │ └── i │ └── imgui-file-dialog │ └── xmake.lua ├── src ├── config │ ├── config.cpp │ └── config.h ├── cs2_sdk │ ├── entity │ │ ├── cbaseentity.h │ │ └── cbaseplayercontroller.h │ ├── schema.cpp │ ├── schema.h │ └── serversideclient.h ├── extension.cpp ├── extension.h ├── imgui │ ├── gui.cpp │ ├── gui.h │ ├── main.cpp │ ├── main.h │ └── panels │ │ ├── actions │ │ ├── actions.cpp │ │ └── actions.h │ │ ├── dumper │ │ ├── commandlist │ │ │ ├── commandlist.cpp │ │ │ └── commandlist.h │ │ ├── convarlist │ │ │ ├── convarlist.cpp │ │ │ └── convarlist.h │ │ ├── dumper.cpp │ │ ├── dumper.h │ │ └── entitylist │ │ │ ├── entitylist.cpp │ │ │ └── entitylist.h │ │ ├── entitybrowser │ │ ├── entitybrowser.cpp │ │ ├── entitybrowser.h │ │ ├── type_stringifier.cpp │ │ └── type_stringifier.h │ │ ├── eventlogger │ │ ├── eventlogger.cpp │ │ └── eventlogger.h │ │ ├── menubar │ │ ├── menubar.cpp │ │ └── menubar.h │ │ ├── playerlist │ │ ├── playerlist.cpp │ │ └── playerlist.h │ │ └── stringtables │ │ ├── stringtables.cpp │ │ └── stringtables.h ├── interfaces.h ├── network_connection.pb.h └── utils │ ├── module.h │ ├── plat.h │ ├── plat_unix.cpp │ └── plat_win.cpp ├── vendor ├── funchook │ ├── LICENSE │ ├── README.md │ ├── include │ │ └── funchook.h │ └── lib │ │ ├── Debug │ │ ├── distorm.lib │ │ ├── distorm.pdb │ │ ├── funchook.lib │ │ ├── funchook.pdb │ │ ├── libdistorm.a │ │ └── libfunchook.a │ │ └── Release │ │ ├── distorm.lib │ │ ├── funchook.lib │ │ ├── libdistorm.a │ │ └── libfunchook.a └── imgui-notify │ ├── IconsFontAwesome6.h │ ├── ImGuiNotify.hpp │ └── fa_solid_900.h └── xmake.lua /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/README.md -------------------------------------------------------------------------------- /protobufs/base_gcmessages_csgo.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/protobufs/base_gcmessages_csgo.proto -------------------------------------------------------------------------------- /protobufs/c_peer2peer_netmessages.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/protobufs/c_peer2peer_netmessages.proto -------------------------------------------------------------------------------- /protobufs/clientmessages.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/protobufs/clientmessages.proto -------------------------------------------------------------------------------- /protobufs/connectionless_netmessages.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/protobufs/connectionless_netmessages.proto -------------------------------------------------------------------------------- /protobufs/cs_gameevents.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/protobufs/cs_gameevents.proto -------------------------------------------------------------------------------- /protobufs/cs_prediction_events.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/protobufs/cs_prediction_events.proto -------------------------------------------------------------------------------- /protobufs/cs_usercmd.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/protobufs/cs_usercmd.proto -------------------------------------------------------------------------------- /protobufs/cstrike15_gcmessages.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/protobufs/cstrike15_gcmessages.proto -------------------------------------------------------------------------------- /protobufs/cstrike15_usermessages.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/protobufs/cstrike15_usermessages.proto -------------------------------------------------------------------------------- /protobufs/demo.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/protobufs/demo.proto -------------------------------------------------------------------------------- /protobufs/econ_gcmessages.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/protobufs/econ_gcmessages.proto -------------------------------------------------------------------------------- /protobufs/engine_gcmessages.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/protobufs/engine_gcmessages.proto -------------------------------------------------------------------------------- /protobufs/fatdemo.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/protobufs/fatdemo.proto -------------------------------------------------------------------------------- /protobufs/gameevents.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/protobufs/gameevents.proto -------------------------------------------------------------------------------- /protobufs/gcsdk_gcmessages.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/protobufs/gcsdk_gcmessages.proto -------------------------------------------------------------------------------- /protobufs/gcsystemmsgs.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/protobufs/gcsystemmsgs.proto -------------------------------------------------------------------------------- /protobufs/generated/base_gcmessages_csgo.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/protobufs/generated/base_gcmessages_csgo.pb.cc -------------------------------------------------------------------------------- /protobufs/generated/base_gcmessages_csgo.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/protobufs/generated/base_gcmessages_csgo.pb.h -------------------------------------------------------------------------------- /protobufs/generated/c_peer2peer_netmessages.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/protobufs/generated/c_peer2peer_netmessages.pb.cc -------------------------------------------------------------------------------- /protobufs/generated/c_peer2peer_netmessages.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/protobufs/generated/c_peer2peer_netmessages.pb.h -------------------------------------------------------------------------------- /protobufs/generated/clientmessages.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/protobufs/generated/clientmessages.pb.cc -------------------------------------------------------------------------------- /protobufs/generated/clientmessages.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/protobufs/generated/clientmessages.pb.h -------------------------------------------------------------------------------- /protobufs/generated/connectionless_netmessages.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/protobufs/generated/connectionless_netmessages.pb.cc -------------------------------------------------------------------------------- /protobufs/generated/connectionless_netmessages.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/protobufs/generated/connectionless_netmessages.pb.h -------------------------------------------------------------------------------- /protobufs/generated/cs_gameevents.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/protobufs/generated/cs_gameevents.pb.cc -------------------------------------------------------------------------------- /protobufs/generated/cs_gameevents.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/protobufs/generated/cs_gameevents.pb.h -------------------------------------------------------------------------------- /protobufs/generated/cs_prediction_events.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/protobufs/generated/cs_prediction_events.pb.cc -------------------------------------------------------------------------------- /protobufs/generated/cs_prediction_events.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/protobufs/generated/cs_prediction_events.pb.h -------------------------------------------------------------------------------- /protobufs/generated/cs_usercmd.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/protobufs/generated/cs_usercmd.pb.cc -------------------------------------------------------------------------------- /protobufs/generated/cs_usercmd.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/protobufs/generated/cs_usercmd.pb.h -------------------------------------------------------------------------------- /protobufs/generated/cstrike15_gcmessages.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/protobufs/generated/cstrike15_gcmessages.pb.cc -------------------------------------------------------------------------------- /protobufs/generated/cstrike15_gcmessages.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/protobufs/generated/cstrike15_gcmessages.pb.h -------------------------------------------------------------------------------- /protobufs/generated/cstrike15_usermessages.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/protobufs/generated/cstrike15_usermessages.pb.cc -------------------------------------------------------------------------------- /protobufs/generated/cstrike15_usermessages.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/protobufs/generated/cstrike15_usermessages.pb.h -------------------------------------------------------------------------------- /protobufs/generated/demo.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/protobufs/generated/demo.pb.cc -------------------------------------------------------------------------------- /protobufs/generated/demo.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/protobufs/generated/demo.pb.h -------------------------------------------------------------------------------- /protobufs/generated/econ_gcmessages.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/protobufs/generated/econ_gcmessages.pb.cc -------------------------------------------------------------------------------- /protobufs/generated/econ_gcmessages.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/protobufs/generated/econ_gcmessages.pb.h -------------------------------------------------------------------------------- /protobufs/generated/engine_gcmessages.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/protobufs/generated/engine_gcmessages.pb.cc -------------------------------------------------------------------------------- /protobufs/generated/engine_gcmessages.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/protobufs/generated/engine_gcmessages.pb.h -------------------------------------------------------------------------------- /protobufs/generated/fatdemo.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/protobufs/generated/fatdemo.pb.cc -------------------------------------------------------------------------------- /protobufs/generated/fatdemo.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/protobufs/generated/fatdemo.pb.h -------------------------------------------------------------------------------- /protobufs/generated/gameevents.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/protobufs/generated/gameevents.pb.cc -------------------------------------------------------------------------------- /protobufs/generated/gameevents.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/protobufs/generated/gameevents.pb.h -------------------------------------------------------------------------------- /protobufs/generated/gcsdk_gcmessages.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/protobufs/generated/gcsdk_gcmessages.pb.cc -------------------------------------------------------------------------------- /protobufs/generated/gcsdk_gcmessages.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/protobufs/generated/gcsdk_gcmessages.pb.h -------------------------------------------------------------------------------- /protobufs/generated/gcsystemmsgs.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/protobufs/generated/gcsystemmsgs.pb.cc -------------------------------------------------------------------------------- /protobufs/generated/gcsystemmsgs.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/protobufs/generated/gcsystemmsgs.pb.h -------------------------------------------------------------------------------- /protobufs/generated/netmessages.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/protobufs/generated/netmessages.pb.cc -------------------------------------------------------------------------------- /protobufs/generated/netmessages.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/protobufs/generated/netmessages.pb.h -------------------------------------------------------------------------------- /protobufs/generated/network_connection.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/protobufs/generated/network_connection.pb.cc -------------------------------------------------------------------------------- /protobufs/generated/network_connection.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/protobufs/generated/network_connection.pb.h -------------------------------------------------------------------------------- /protobufs/generated/networkbasetypes.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/protobufs/generated/networkbasetypes.pb.cc -------------------------------------------------------------------------------- /protobufs/generated/networkbasetypes.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/protobufs/generated/networkbasetypes.pb.h -------------------------------------------------------------------------------- /protobufs/generated/networksystem_protomessages.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/protobufs/generated/networksystem_protomessages.pb.cc -------------------------------------------------------------------------------- /protobufs/generated/networksystem_protomessages.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/protobufs/generated/networksystem_protomessages.pb.h -------------------------------------------------------------------------------- /protobufs/generated/prediction_events.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/protobufs/generated/prediction_events.pb.cc -------------------------------------------------------------------------------- /protobufs/generated/prediction_events.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/protobufs/generated/prediction_events.pb.h -------------------------------------------------------------------------------- /protobufs/generated/steamdatagram_messages_auth.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/protobufs/generated/steamdatagram_messages_auth.pb.cc -------------------------------------------------------------------------------- /protobufs/generated/steamdatagram_messages_auth.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/protobufs/generated/steamdatagram_messages_auth.pb.h -------------------------------------------------------------------------------- /protobufs/generated/steamdatagram_messages_sdr.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/protobufs/generated/steamdatagram_messages_sdr.pb.cc -------------------------------------------------------------------------------- /protobufs/generated/steamdatagram_messages_sdr.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/protobufs/generated/steamdatagram_messages_sdr.pb.h -------------------------------------------------------------------------------- /protobufs/generated/steammessages.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/protobufs/generated/steammessages.pb.cc -------------------------------------------------------------------------------- /protobufs/generated/steammessages.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/protobufs/generated/steammessages.pb.h -------------------------------------------------------------------------------- /protobufs/generated/steammessages_cloud.steamworkssdk.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/protobufs/generated/steammessages_cloud.steamworkssdk.pb.cc -------------------------------------------------------------------------------- /protobufs/generated/steammessages_cloud.steamworkssdk.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/protobufs/generated/steammessages_cloud.steamworkssdk.pb.h -------------------------------------------------------------------------------- /protobufs/generated/steammessages_gamenetworkingui.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/protobufs/generated/steammessages_gamenetworkingui.pb.cc -------------------------------------------------------------------------------- /protobufs/generated/steammessages_gamenetworkingui.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/protobufs/generated/steammessages_gamenetworkingui.pb.h -------------------------------------------------------------------------------- /protobufs/generated/steammessages_helprequest.steamworkssdk.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/protobufs/generated/steammessages_helprequest.steamworkssdk.pb.cc -------------------------------------------------------------------------------- /protobufs/generated/steammessages_helprequest.steamworkssdk.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/protobufs/generated/steammessages_helprequest.steamworkssdk.pb.h -------------------------------------------------------------------------------- /protobufs/generated/steammessages_oauth.steamworkssdk.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/protobufs/generated/steammessages_oauth.steamworkssdk.pb.cc -------------------------------------------------------------------------------- /protobufs/generated/steammessages_oauth.steamworkssdk.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/protobufs/generated/steammessages_oauth.steamworkssdk.pb.h -------------------------------------------------------------------------------- /protobufs/generated/steammessages_player.steamworkssdk.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/protobufs/generated/steammessages_player.steamworkssdk.pb.cc -------------------------------------------------------------------------------- /protobufs/generated/steammessages_player.steamworkssdk.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/protobufs/generated/steammessages_player.steamworkssdk.pb.h -------------------------------------------------------------------------------- /protobufs/generated/steammessages_publishedfile.steamworkssdk.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/protobufs/generated/steammessages_publishedfile.steamworkssdk.pb.cc -------------------------------------------------------------------------------- /protobufs/generated/steammessages_publishedfile.steamworkssdk.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/protobufs/generated/steammessages_publishedfile.steamworkssdk.pb.h -------------------------------------------------------------------------------- /protobufs/generated/steammessages_unified_base.steamworkssdk.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/protobufs/generated/steammessages_unified_base.steamworkssdk.pb.cc -------------------------------------------------------------------------------- /protobufs/generated/steammessages_unified_base.steamworkssdk.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/protobufs/generated/steammessages_unified_base.steamworkssdk.pb.h -------------------------------------------------------------------------------- /protobufs/generated/steamnetworkingsockets_messages.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/protobufs/generated/steamnetworkingsockets_messages.pb.cc -------------------------------------------------------------------------------- /protobufs/generated/steamnetworkingsockets_messages.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/protobufs/generated/steamnetworkingsockets_messages.pb.h -------------------------------------------------------------------------------- /protobufs/generated/steamnetworkingsockets_messages_certs.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/protobufs/generated/steamnetworkingsockets_messages_certs.pb.cc -------------------------------------------------------------------------------- /protobufs/generated/steamnetworkingsockets_messages_certs.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/protobufs/generated/steamnetworkingsockets_messages_certs.pb.h -------------------------------------------------------------------------------- /protobufs/generated/steamnetworkingsockets_messages_udp.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/protobufs/generated/steamnetworkingsockets_messages_udp.pb.cc -------------------------------------------------------------------------------- /protobufs/generated/steamnetworkingsockets_messages_udp.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/protobufs/generated/steamnetworkingsockets_messages_udp.pb.h -------------------------------------------------------------------------------- /protobufs/generated/te.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/protobufs/generated/te.pb.cc -------------------------------------------------------------------------------- /protobufs/generated/te.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/protobufs/generated/te.pb.h -------------------------------------------------------------------------------- /protobufs/generated/uifontfile_format.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/protobufs/generated/uifontfile_format.pb.cc -------------------------------------------------------------------------------- /protobufs/generated/uifontfile_format.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/protobufs/generated/uifontfile_format.pb.h -------------------------------------------------------------------------------- /protobufs/generated/usercmd.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/protobufs/generated/usercmd.pb.cc -------------------------------------------------------------------------------- /protobufs/generated/usercmd.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/protobufs/generated/usercmd.pb.h -------------------------------------------------------------------------------- /protobufs/generated/usermessages.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/protobufs/generated/usermessages.pb.cc -------------------------------------------------------------------------------- /protobufs/generated/usermessages.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/protobufs/generated/usermessages.pb.h -------------------------------------------------------------------------------- /protobufs/generated/valveextensions.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/protobufs/generated/valveextensions.pb.cc -------------------------------------------------------------------------------- /protobufs/generated/valveextensions.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/protobufs/generated/valveextensions.pb.h -------------------------------------------------------------------------------- /protobufs/netmessages.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/protobufs/netmessages.proto -------------------------------------------------------------------------------- /protobufs/network_connection.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/protobufs/network_connection.proto -------------------------------------------------------------------------------- /protobufs/networkbasetypes.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/protobufs/networkbasetypes.proto -------------------------------------------------------------------------------- /protobufs/networksystem_protomessages.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/protobufs/networksystem_protomessages.proto -------------------------------------------------------------------------------- /protobufs/prediction_events.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/protobufs/prediction_events.proto -------------------------------------------------------------------------------- /protobufs/protoc/google/protobuf/descriptor.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/protobufs/protoc/google/protobuf/descriptor.proto -------------------------------------------------------------------------------- /protobufs/protoc/protoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/protobufs/protoc/protoc -------------------------------------------------------------------------------- /protobufs/protoc/protoc_old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/protobufs/protoc/protoc_old -------------------------------------------------------------------------------- /protobufs/protocompile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/protobufs/protocompile.sh -------------------------------------------------------------------------------- /protobufs/steamdatagram_messages_auth.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/protobufs/steamdatagram_messages_auth.proto -------------------------------------------------------------------------------- /protobufs/steamdatagram_messages_sdr.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/protobufs/steamdatagram_messages_sdr.proto -------------------------------------------------------------------------------- /protobufs/steammessages.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/protobufs/steammessages.proto -------------------------------------------------------------------------------- /protobufs/steammessages_cloud.steamworkssdk.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/protobufs/steammessages_cloud.steamworkssdk.proto -------------------------------------------------------------------------------- /protobufs/steammessages_gamenetworkingui.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/protobufs/steammessages_gamenetworkingui.proto -------------------------------------------------------------------------------- /protobufs/steammessages_helprequest.steamworkssdk.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/protobufs/steammessages_helprequest.steamworkssdk.proto -------------------------------------------------------------------------------- /protobufs/steammessages_oauth.steamworkssdk.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/protobufs/steammessages_oauth.steamworkssdk.proto -------------------------------------------------------------------------------- /protobufs/steammessages_player.steamworkssdk.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/protobufs/steammessages_player.steamworkssdk.proto -------------------------------------------------------------------------------- /protobufs/steammessages_publishedfile.steamworkssdk.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/protobufs/steammessages_publishedfile.steamworkssdk.proto -------------------------------------------------------------------------------- /protobufs/steammessages_unified_base.steamworkssdk.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/protobufs/steammessages_unified_base.steamworkssdk.proto -------------------------------------------------------------------------------- /protobufs/steamnetworkingsockets_messages.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/protobufs/steamnetworkingsockets_messages.proto -------------------------------------------------------------------------------- /protobufs/steamnetworkingsockets_messages_certs.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/protobufs/steamnetworkingsockets_messages_certs.proto -------------------------------------------------------------------------------- /protobufs/steamnetworkingsockets_messages_udp.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/protobufs/steamnetworkingsockets_messages_udp.proto -------------------------------------------------------------------------------- /protobufs/te.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/protobufs/te.proto -------------------------------------------------------------------------------- /protobufs/uifontfile_format.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/protobufs/uifontfile_format.proto -------------------------------------------------------------------------------- /protobufs/usercmd.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/protobufs/usercmd.proto -------------------------------------------------------------------------------- /protobufs/usermessages.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/protobufs/usermessages.proto -------------------------------------------------------------------------------- /protobufs/valveextensions.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/protobufs/valveextensions.proto -------------------------------------------------------------------------------- /repo/packages/i/imgui-file-dialog/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/repo/packages/i/imgui-file-dialog/xmake.lua -------------------------------------------------------------------------------- /src/config/config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/src/config/config.cpp -------------------------------------------------------------------------------- /src/config/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/src/config/config.h -------------------------------------------------------------------------------- /src/cs2_sdk/entity/cbaseentity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/src/cs2_sdk/entity/cbaseentity.h -------------------------------------------------------------------------------- /src/cs2_sdk/entity/cbaseplayercontroller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/src/cs2_sdk/entity/cbaseplayercontroller.h -------------------------------------------------------------------------------- /src/cs2_sdk/schema.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/src/cs2_sdk/schema.cpp -------------------------------------------------------------------------------- /src/cs2_sdk/schema.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/src/cs2_sdk/schema.h -------------------------------------------------------------------------------- /src/cs2_sdk/serversideclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/src/cs2_sdk/serversideclient.h -------------------------------------------------------------------------------- /src/extension.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/src/extension.cpp -------------------------------------------------------------------------------- /src/extension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/src/extension.h -------------------------------------------------------------------------------- /src/imgui/gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/src/imgui/gui.cpp -------------------------------------------------------------------------------- /src/imgui/gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/src/imgui/gui.h -------------------------------------------------------------------------------- /src/imgui/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/src/imgui/main.cpp -------------------------------------------------------------------------------- /src/imgui/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/src/imgui/main.h -------------------------------------------------------------------------------- /src/imgui/panels/actions/actions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/src/imgui/panels/actions/actions.cpp -------------------------------------------------------------------------------- /src/imgui/panels/actions/actions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/src/imgui/panels/actions/actions.h -------------------------------------------------------------------------------- /src/imgui/panels/dumper/commandlist/commandlist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/src/imgui/panels/dumper/commandlist/commandlist.cpp -------------------------------------------------------------------------------- /src/imgui/panels/dumper/commandlist/commandlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/src/imgui/panels/dumper/commandlist/commandlist.h -------------------------------------------------------------------------------- /src/imgui/panels/dumper/convarlist/convarlist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/src/imgui/panels/dumper/convarlist/convarlist.cpp -------------------------------------------------------------------------------- /src/imgui/panels/dumper/convarlist/convarlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/src/imgui/panels/dumper/convarlist/convarlist.h -------------------------------------------------------------------------------- /src/imgui/panels/dumper/dumper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/src/imgui/panels/dumper/dumper.cpp -------------------------------------------------------------------------------- /src/imgui/panels/dumper/dumper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/src/imgui/panels/dumper/dumper.h -------------------------------------------------------------------------------- /src/imgui/panels/dumper/entitylist/entitylist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/src/imgui/panels/dumper/entitylist/entitylist.cpp -------------------------------------------------------------------------------- /src/imgui/panels/dumper/entitylist/entitylist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/src/imgui/panels/dumper/entitylist/entitylist.h -------------------------------------------------------------------------------- /src/imgui/panels/entitybrowser/entitybrowser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/src/imgui/panels/entitybrowser/entitybrowser.cpp -------------------------------------------------------------------------------- /src/imgui/panels/entitybrowser/entitybrowser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/src/imgui/panels/entitybrowser/entitybrowser.h -------------------------------------------------------------------------------- /src/imgui/panels/entitybrowser/type_stringifier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/src/imgui/panels/entitybrowser/type_stringifier.cpp -------------------------------------------------------------------------------- /src/imgui/panels/entitybrowser/type_stringifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/src/imgui/panels/entitybrowser/type_stringifier.h -------------------------------------------------------------------------------- /src/imgui/panels/eventlogger/eventlogger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/src/imgui/panels/eventlogger/eventlogger.cpp -------------------------------------------------------------------------------- /src/imgui/panels/eventlogger/eventlogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/src/imgui/panels/eventlogger/eventlogger.h -------------------------------------------------------------------------------- /src/imgui/panels/menubar/menubar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/src/imgui/panels/menubar/menubar.cpp -------------------------------------------------------------------------------- /src/imgui/panels/menubar/menubar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/src/imgui/panels/menubar/menubar.h -------------------------------------------------------------------------------- /src/imgui/panels/playerlist/playerlist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/src/imgui/panels/playerlist/playerlist.cpp -------------------------------------------------------------------------------- /src/imgui/panels/playerlist/playerlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/src/imgui/panels/playerlist/playerlist.h -------------------------------------------------------------------------------- /src/imgui/panels/stringtables/stringtables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/src/imgui/panels/stringtables/stringtables.cpp -------------------------------------------------------------------------------- /src/imgui/panels/stringtables/stringtables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/src/imgui/panels/stringtables/stringtables.h -------------------------------------------------------------------------------- /src/interfaces.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/src/interfaces.h -------------------------------------------------------------------------------- /src/network_connection.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/src/network_connection.pb.h -------------------------------------------------------------------------------- /src/utils/module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/src/utils/module.h -------------------------------------------------------------------------------- /src/utils/plat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/src/utils/plat.h -------------------------------------------------------------------------------- /src/utils/plat_unix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/src/utils/plat_unix.cpp -------------------------------------------------------------------------------- /src/utils/plat_win.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/src/utils/plat_win.cpp -------------------------------------------------------------------------------- /vendor/funchook/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/vendor/funchook/LICENSE -------------------------------------------------------------------------------- /vendor/funchook/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/vendor/funchook/README.md -------------------------------------------------------------------------------- /vendor/funchook/include/funchook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/vendor/funchook/include/funchook.h -------------------------------------------------------------------------------- /vendor/funchook/lib/Debug/distorm.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/vendor/funchook/lib/Debug/distorm.lib -------------------------------------------------------------------------------- /vendor/funchook/lib/Debug/distorm.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/vendor/funchook/lib/Debug/distorm.pdb -------------------------------------------------------------------------------- /vendor/funchook/lib/Debug/funchook.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/vendor/funchook/lib/Debug/funchook.lib -------------------------------------------------------------------------------- /vendor/funchook/lib/Debug/funchook.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/vendor/funchook/lib/Debug/funchook.pdb -------------------------------------------------------------------------------- /vendor/funchook/lib/Debug/libdistorm.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/vendor/funchook/lib/Debug/libdistorm.a -------------------------------------------------------------------------------- /vendor/funchook/lib/Debug/libfunchook.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/vendor/funchook/lib/Debug/libfunchook.a -------------------------------------------------------------------------------- /vendor/funchook/lib/Release/distorm.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/vendor/funchook/lib/Release/distorm.lib -------------------------------------------------------------------------------- /vendor/funchook/lib/Release/funchook.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/vendor/funchook/lib/Release/funchook.lib -------------------------------------------------------------------------------- /vendor/funchook/lib/Release/libdistorm.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/vendor/funchook/lib/Release/libdistorm.a -------------------------------------------------------------------------------- /vendor/funchook/lib/Release/libfunchook.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/vendor/funchook/lib/Release/libfunchook.a -------------------------------------------------------------------------------- /vendor/imgui-notify/IconsFontAwesome6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/vendor/imgui-notify/IconsFontAwesome6.h -------------------------------------------------------------------------------- /vendor/imgui-notify/ImGuiNotify.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/vendor/imgui-notify/ImGuiNotify.hpp -------------------------------------------------------------------------------- /vendor/imgui-notify/fa_solid_900.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/vendor/imgui-notify/fa_solid_900.h -------------------------------------------------------------------------------- /xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Source2ZE/CS2ServerGUI/HEAD/xmake.lua --------------------------------------------------------------------------------