├── .gitattributes ├── .github └── ISSUE_TEMPLATE │ └── bug_report.md ├── .gitignore ├── CPP.HINT ├── DualSenseToXInput.vcxproj ├── DualSenseToXInput.vcxproj.filters ├── DualSenseToXInput.vcxproj.user ├── Include ├── ViGEm │ ├── Client.h │ ├── Common.h │ ├── Util.h │ ├── ViGEmClient.dll │ ├── ViGEmClient.lib │ └── km │ │ └── BusShared.h ├── Xinput.h ├── dinput8.cpp ├── dinput8.def ├── dinput8.h ├── hidapi.dll ├── hidapi.h ├── hidapi.lib ├── hidapi.pdb ├── hidapi_winapi.h └── imgui │ ├── LICENSE.txt │ ├── cpp │ ├── imgui.cpp │ ├── imgui_draw.cpp │ ├── imgui_impl_glfw.cpp │ ├── imgui_impl_opengl3.cpp │ ├── imgui_stdlib.cpp │ ├── imgui_tables.cpp │ └── imgui_widgets.cpp │ └── header │ ├── GLFW │ ├── glfw3.dll │ ├── glfw3.h │ ├── glfw3dll.lib │ └── glfw3native.h │ ├── imconfig.h │ ├── imgui.h │ ├── imgui_impl_glfw.h │ ├── imgui_impl_opengl3.h │ ├── imgui_impl_opengl3_loader.h │ ├── imgui_internal.h │ ├── imgui_stdlib.h │ ├── imstb_rectpack.h │ ├── imstb_textedit.h │ ├── imstb_truetype.h │ └── stb_image.h ├── LICENSE.md ├── PCXSense.rc ├── PCXSense.sln ├── README.md ├── contributors.md ├── images ├── Circle.png ├── Cross.png ├── DpadDown.png ├── DpadLeft.png ├── DpadRight.png ├── DpadUp.png ├── Lightbar.png ├── PCXSense.png ├── Select.png ├── ShoulderLeft.png ├── ShoulderRight.png ├── Square.png ├── Start.png ├── Triangle.png ├── dualsense.png ├── dualsenseD.png ├── github.png ├── icon1.ico └── stick.png ├── resource1.h ├── src ├── ControllerIO │ ├── Controller Connections │ │ ├── controllerConnections.cpp │ │ └── controllerConnections.h │ ├── Device Hiding │ │ ├── deviceHiding.cpp │ │ └── deviceHiding.h │ ├── Dualsense │ │ ├── dualsense.cpp │ │ └── dualsense.h │ ├── Dualshock4 │ │ ├── dualshock4.cpp │ │ └── dualshock4.h │ ├── Gyro │ │ ├── gyro.cpp │ │ └── gyro.h │ ├── controllerIO.cpp │ └── controllerIO.h ├── GUI │ ├── Functions │ │ └── Misc │ │ │ ├── functionality.cpp │ │ │ └── functionality.h │ ├── GUI.cpp │ ├── GUI.h │ ├── Sub Menus │ │ ├── subMenus.cpp │ │ └── subMenus.h │ └── include.h ├── Inline Assembly │ ├── assemblyFunctions.obj │ └── assemblyFunctions.s ├── Misc │ ├── benchmark.cpp │ ├── benchmark.h │ ├── util.cpp │ └── util.h ├── Startup │ ├── startup.cpp │ └── startup.h ├── Updater │ ├── update.cpp │ └── update.h ├── User Settings │ ├── Adaptive Triggers │ │ ├── Adaptive Triggers.cpp │ │ └── Adaptive Triggers.h │ ├── Button Mappings │ │ ├── button Mappings.cpp │ │ └── button Mappings.h │ ├── Game Profiles │ │ ├── gameProfile.cpp │ │ ├── gameProfile.h │ │ ├── saveLoad.cpp │ │ └── saveLoad.h │ ├── Lightbar │ │ ├── Lightbar.cpp │ │ └── Lightbar.h │ └── Macros │ │ ├── macro.cpp │ │ └── macro.h ├── main.cpp └── main.h └── start.bat /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Denellyne/PCXSense/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Denellyne/PCXSense/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Denellyne/PCXSense/HEAD/.gitignore -------------------------------------------------------------------------------- /CPP.HINT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Denellyne/PCXSense/HEAD/CPP.HINT -------------------------------------------------------------------------------- /DualSenseToXInput.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Denellyne/PCXSense/HEAD/DualSenseToXInput.vcxproj -------------------------------------------------------------------------------- /DualSenseToXInput.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Denellyne/PCXSense/HEAD/DualSenseToXInput.vcxproj.filters -------------------------------------------------------------------------------- /DualSenseToXInput.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Denellyne/PCXSense/HEAD/DualSenseToXInput.vcxproj.user -------------------------------------------------------------------------------- /Include/ViGEm/Client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Denellyne/PCXSense/HEAD/Include/ViGEm/Client.h -------------------------------------------------------------------------------- /Include/ViGEm/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Denellyne/PCXSense/HEAD/Include/ViGEm/Common.h -------------------------------------------------------------------------------- /Include/ViGEm/Util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Denellyne/PCXSense/HEAD/Include/ViGEm/Util.h -------------------------------------------------------------------------------- /Include/ViGEm/ViGEmClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Denellyne/PCXSense/HEAD/Include/ViGEm/ViGEmClient.dll -------------------------------------------------------------------------------- /Include/ViGEm/ViGEmClient.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Denellyne/PCXSense/HEAD/Include/ViGEm/ViGEmClient.lib -------------------------------------------------------------------------------- /Include/ViGEm/km/BusShared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Denellyne/PCXSense/HEAD/Include/ViGEm/km/BusShared.h -------------------------------------------------------------------------------- /Include/Xinput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Denellyne/PCXSense/HEAD/Include/Xinput.h -------------------------------------------------------------------------------- /Include/dinput8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Denellyne/PCXSense/HEAD/Include/dinput8.cpp -------------------------------------------------------------------------------- /Include/dinput8.def: -------------------------------------------------------------------------------- 1 | EXPORTS 2 | DirectInput8Create @1 3 | -------------------------------------------------------------------------------- /Include/dinput8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Denellyne/PCXSense/HEAD/Include/dinput8.h -------------------------------------------------------------------------------- /Include/hidapi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Denellyne/PCXSense/HEAD/Include/hidapi.dll -------------------------------------------------------------------------------- /Include/hidapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Denellyne/PCXSense/HEAD/Include/hidapi.h -------------------------------------------------------------------------------- /Include/hidapi.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Denellyne/PCXSense/HEAD/Include/hidapi.lib -------------------------------------------------------------------------------- /Include/hidapi.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Denellyne/PCXSense/HEAD/Include/hidapi.pdb -------------------------------------------------------------------------------- /Include/hidapi_winapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Denellyne/PCXSense/HEAD/Include/hidapi_winapi.h -------------------------------------------------------------------------------- /Include/imgui/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Denellyne/PCXSense/HEAD/Include/imgui/LICENSE.txt -------------------------------------------------------------------------------- /Include/imgui/cpp/imgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Denellyne/PCXSense/HEAD/Include/imgui/cpp/imgui.cpp -------------------------------------------------------------------------------- /Include/imgui/cpp/imgui_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Denellyne/PCXSense/HEAD/Include/imgui/cpp/imgui_draw.cpp -------------------------------------------------------------------------------- /Include/imgui/cpp/imgui_impl_glfw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Denellyne/PCXSense/HEAD/Include/imgui/cpp/imgui_impl_glfw.cpp -------------------------------------------------------------------------------- /Include/imgui/cpp/imgui_impl_opengl3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Denellyne/PCXSense/HEAD/Include/imgui/cpp/imgui_impl_opengl3.cpp -------------------------------------------------------------------------------- /Include/imgui/cpp/imgui_stdlib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Denellyne/PCXSense/HEAD/Include/imgui/cpp/imgui_stdlib.cpp -------------------------------------------------------------------------------- /Include/imgui/cpp/imgui_tables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Denellyne/PCXSense/HEAD/Include/imgui/cpp/imgui_tables.cpp -------------------------------------------------------------------------------- /Include/imgui/cpp/imgui_widgets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Denellyne/PCXSense/HEAD/Include/imgui/cpp/imgui_widgets.cpp -------------------------------------------------------------------------------- /Include/imgui/header/GLFW/glfw3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Denellyne/PCXSense/HEAD/Include/imgui/header/GLFW/glfw3.dll -------------------------------------------------------------------------------- /Include/imgui/header/GLFW/glfw3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Denellyne/PCXSense/HEAD/Include/imgui/header/GLFW/glfw3.h -------------------------------------------------------------------------------- /Include/imgui/header/GLFW/glfw3dll.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Denellyne/PCXSense/HEAD/Include/imgui/header/GLFW/glfw3dll.lib -------------------------------------------------------------------------------- /Include/imgui/header/GLFW/glfw3native.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Denellyne/PCXSense/HEAD/Include/imgui/header/GLFW/glfw3native.h -------------------------------------------------------------------------------- /Include/imgui/header/imconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Denellyne/PCXSense/HEAD/Include/imgui/header/imconfig.h -------------------------------------------------------------------------------- /Include/imgui/header/imgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Denellyne/PCXSense/HEAD/Include/imgui/header/imgui.h -------------------------------------------------------------------------------- /Include/imgui/header/imgui_impl_glfw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Denellyne/PCXSense/HEAD/Include/imgui/header/imgui_impl_glfw.h -------------------------------------------------------------------------------- /Include/imgui/header/imgui_impl_opengl3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Denellyne/PCXSense/HEAD/Include/imgui/header/imgui_impl_opengl3.h -------------------------------------------------------------------------------- /Include/imgui/header/imgui_impl_opengl3_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Denellyne/PCXSense/HEAD/Include/imgui/header/imgui_impl_opengl3_loader.h -------------------------------------------------------------------------------- /Include/imgui/header/imgui_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Denellyne/PCXSense/HEAD/Include/imgui/header/imgui_internal.h -------------------------------------------------------------------------------- /Include/imgui/header/imgui_stdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Denellyne/PCXSense/HEAD/Include/imgui/header/imgui_stdlib.h -------------------------------------------------------------------------------- /Include/imgui/header/imstb_rectpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Denellyne/PCXSense/HEAD/Include/imgui/header/imstb_rectpack.h -------------------------------------------------------------------------------- /Include/imgui/header/imstb_textedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Denellyne/PCXSense/HEAD/Include/imgui/header/imstb_textedit.h -------------------------------------------------------------------------------- /Include/imgui/header/imstb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Denellyne/PCXSense/HEAD/Include/imgui/header/imstb_truetype.h -------------------------------------------------------------------------------- /Include/imgui/header/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Denellyne/PCXSense/HEAD/Include/imgui/header/stb_image.h -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Denellyne/PCXSense/HEAD/LICENSE.md -------------------------------------------------------------------------------- /PCXSense.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Denellyne/PCXSense/HEAD/PCXSense.rc -------------------------------------------------------------------------------- /PCXSense.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Denellyne/PCXSense/HEAD/PCXSense.sln -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Denellyne/PCXSense/HEAD/README.md -------------------------------------------------------------------------------- /contributors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Denellyne/PCXSense/HEAD/contributors.md -------------------------------------------------------------------------------- /images/Circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Denellyne/PCXSense/HEAD/images/Circle.png -------------------------------------------------------------------------------- /images/Cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Denellyne/PCXSense/HEAD/images/Cross.png -------------------------------------------------------------------------------- /images/DpadDown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Denellyne/PCXSense/HEAD/images/DpadDown.png -------------------------------------------------------------------------------- /images/DpadLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Denellyne/PCXSense/HEAD/images/DpadLeft.png -------------------------------------------------------------------------------- /images/DpadRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Denellyne/PCXSense/HEAD/images/DpadRight.png -------------------------------------------------------------------------------- /images/DpadUp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Denellyne/PCXSense/HEAD/images/DpadUp.png -------------------------------------------------------------------------------- /images/Lightbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Denellyne/PCXSense/HEAD/images/Lightbar.png -------------------------------------------------------------------------------- /images/PCXSense.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Denellyne/PCXSense/HEAD/images/PCXSense.png -------------------------------------------------------------------------------- /images/Select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Denellyne/PCXSense/HEAD/images/Select.png -------------------------------------------------------------------------------- /images/ShoulderLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Denellyne/PCXSense/HEAD/images/ShoulderLeft.png -------------------------------------------------------------------------------- /images/ShoulderRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Denellyne/PCXSense/HEAD/images/ShoulderRight.png -------------------------------------------------------------------------------- /images/Square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Denellyne/PCXSense/HEAD/images/Square.png -------------------------------------------------------------------------------- /images/Start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Denellyne/PCXSense/HEAD/images/Start.png -------------------------------------------------------------------------------- /images/Triangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Denellyne/PCXSense/HEAD/images/Triangle.png -------------------------------------------------------------------------------- /images/dualsense.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Denellyne/PCXSense/HEAD/images/dualsense.png -------------------------------------------------------------------------------- /images/dualsenseD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Denellyne/PCXSense/HEAD/images/dualsenseD.png -------------------------------------------------------------------------------- /images/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Denellyne/PCXSense/HEAD/images/github.png -------------------------------------------------------------------------------- /images/icon1.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Denellyne/PCXSense/HEAD/images/icon1.ico -------------------------------------------------------------------------------- /images/stick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Denellyne/PCXSense/HEAD/images/stick.png -------------------------------------------------------------------------------- /resource1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Denellyne/PCXSense/HEAD/resource1.h -------------------------------------------------------------------------------- /src/ControllerIO/Controller Connections/controllerConnections.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Denellyne/PCXSense/HEAD/src/ControllerIO/Controller Connections/controllerConnections.cpp -------------------------------------------------------------------------------- /src/ControllerIO/Controller Connections/controllerConnections.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Denellyne/PCXSense/HEAD/src/ControllerIO/Controller Connections/controllerConnections.h -------------------------------------------------------------------------------- /src/ControllerIO/Device Hiding/deviceHiding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Denellyne/PCXSense/HEAD/src/ControllerIO/Device Hiding/deviceHiding.cpp -------------------------------------------------------------------------------- /src/ControllerIO/Device Hiding/deviceHiding.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | void hideDevice(); -------------------------------------------------------------------------------- /src/ControllerIO/Dualsense/dualsense.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Denellyne/PCXSense/HEAD/src/ControllerIO/Dualsense/dualsense.cpp -------------------------------------------------------------------------------- /src/ControllerIO/Dualsense/dualsense.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Denellyne/PCXSense/HEAD/src/ControllerIO/Dualsense/dualsense.h -------------------------------------------------------------------------------- /src/ControllerIO/Dualshock4/dualshock4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Denellyne/PCXSense/HEAD/src/ControllerIO/Dualshock4/dualshock4.cpp -------------------------------------------------------------------------------- /src/ControllerIO/Dualshock4/dualshock4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Denellyne/PCXSense/HEAD/src/ControllerIO/Dualshock4/dualshock4.h -------------------------------------------------------------------------------- /src/ControllerIO/Gyro/gyro.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Denellyne/PCXSense/HEAD/src/ControllerIO/Gyro/gyro.cpp -------------------------------------------------------------------------------- /src/ControllerIO/Gyro/gyro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Denellyne/PCXSense/HEAD/src/ControllerIO/Gyro/gyro.h -------------------------------------------------------------------------------- /src/ControllerIO/controllerIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Denellyne/PCXSense/HEAD/src/ControllerIO/controllerIO.cpp -------------------------------------------------------------------------------- /src/ControllerIO/controllerIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Denellyne/PCXSense/HEAD/src/ControllerIO/controllerIO.h -------------------------------------------------------------------------------- /src/GUI/Functions/Misc/functionality.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Denellyne/PCXSense/HEAD/src/GUI/Functions/Misc/functionality.cpp -------------------------------------------------------------------------------- /src/GUI/Functions/Misc/functionality.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Denellyne/PCXSense/HEAD/src/GUI/Functions/Misc/functionality.h -------------------------------------------------------------------------------- /src/GUI/GUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Denellyne/PCXSense/HEAD/src/GUI/GUI.cpp -------------------------------------------------------------------------------- /src/GUI/GUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Denellyne/PCXSense/HEAD/src/GUI/GUI.h -------------------------------------------------------------------------------- /src/GUI/Sub Menus/subMenus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Denellyne/PCXSense/HEAD/src/GUI/Sub Menus/subMenus.cpp -------------------------------------------------------------------------------- /src/GUI/Sub Menus/subMenus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Denellyne/PCXSense/HEAD/src/GUI/Sub Menus/subMenus.h -------------------------------------------------------------------------------- /src/GUI/include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Denellyne/PCXSense/HEAD/src/GUI/include.h -------------------------------------------------------------------------------- /src/Inline Assembly/assemblyFunctions.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Denellyne/PCXSense/HEAD/src/Inline Assembly/assemblyFunctions.obj -------------------------------------------------------------------------------- /src/Inline Assembly/assemblyFunctions.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Denellyne/PCXSense/HEAD/src/Inline Assembly/assemblyFunctions.s -------------------------------------------------------------------------------- /src/Misc/benchmark.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Denellyne/PCXSense/HEAD/src/Misc/benchmark.cpp -------------------------------------------------------------------------------- /src/Misc/benchmark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Denellyne/PCXSense/HEAD/src/Misc/benchmark.h -------------------------------------------------------------------------------- /src/Misc/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Denellyne/PCXSense/HEAD/src/Misc/util.cpp -------------------------------------------------------------------------------- /src/Misc/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Denellyne/PCXSense/HEAD/src/Misc/util.h -------------------------------------------------------------------------------- /src/Startup/startup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Denellyne/PCXSense/HEAD/src/Startup/startup.cpp -------------------------------------------------------------------------------- /src/Startup/startup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Denellyne/PCXSense/HEAD/src/Startup/startup.h -------------------------------------------------------------------------------- /src/Updater/update.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Denellyne/PCXSense/HEAD/src/Updater/update.cpp -------------------------------------------------------------------------------- /src/Updater/update.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Denellyne/PCXSense/HEAD/src/Updater/update.h -------------------------------------------------------------------------------- /src/User Settings/Adaptive Triggers/Adaptive Triggers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Denellyne/PCXSense/HEAD/src/User Settings/Adaptive Triggers/Adaptive Triggers.cpp -------------------------------------------------------------------------------- /src/User Settings/Adaptive Triggers/Adaptive Triggers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Denellyne/PCXSense/HEAD/src/User Settings/Adaptive Triggers/Adaptive Triggers.h -------------------------------------------------------------------------------- /src/User Settings/Button Mappings/button Mappings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Denellyne/PCXSense/HEAD/src/User Settings/Button Mappings/button Mappings.cpp -------------------------------------------------------------------------------- /src/User Settings/Button Mappings/button Mappings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Denellyne/PCXSense/HEAD/src/User Settings/Button Mappings/button Mappings.h -------------------------------------------------------------------------------- /src/User Settings/Game Profiles/gameProfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Denellyne/PCXSense/HEAD/src/User Settings/Game Profiles/gameProfile.cpp -------------------------------------------------------------------------------- /src/User Settings/Game Profiles/gameProfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Denellyne/PCXSense/HEAD/src/User Settings/Game Profiles/gameProfile.h -------------------------------------------------------------------------------- /src/User Settings/Game Profiles/saveLoad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Denellyne/PCXSense/HEAD/src/User Settings/Game Profiles/saveLoad.cpp -------------------------------------------------------------------------------- /src/User Settings/Game Profiles/saveLoad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Denellyne/PCXSense/HEAD/src/User Settings/Game Profiles/saveLoad.h -------------------------------------------------------------------------------- /src/User Settings/Lightbar/Lightbar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Denellyne/PCXSense/HEAD/src/User Settings/Lightbar/Lightbar.cpp -------------------------------------------------------------------------------- /src/User Settings/Lightbar/Lightbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Denellyne/PCXSense/HEAD/src/User Settings/Lightbar/Lightbar.h -------------------------------------------------------------------------------- /src/User Settings/Macros/macro.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Denellyne/PCXSense/HEAD/src/User Settings/Macros/macro.cpp -------------------------------------------------------------------------------- /src/User Settings/Macros/macro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Denellyne/PCXSense/HEAD/src/User Settings/Macros/macro.h -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Denellyne/PCXSense/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Denellyne/PCXSense/HEAD/src/main.h -------------------------------------------------------------------------------- /start.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Denellyne/PCXSense/HEAD/start.bat --------------------------------------------------------------------------------