├── .gitattributes ├── .gitignore ├── ControllerGroup.cs ├── ControllerPair.cs ├── Controls ├── ControllerGroupView.Designer.cs ├── ControllerGroupView.cs ├── ControllerGroupView.resx ├── ControllerPairView.Designer.cs ├── ControllerPairView.cs ├── ControllerPairView.resx ├── ControlsPicker.Designer.cs ├── ControlsPicker.cs ├── ControlsPicker.resx ├── KeyPicker.Designer.cs ├── KeyPicker.cs ├── KeyPicker.resx ├── SelectWindowCrosshair.Designer.cs ├── SelectWindowCrosshair.cs └── SelectWindowCrosshair.resx ├── Events ├── WindowActivatedEventArgs.cs ├── WindowClientAreaLocationChangedEventArgs.cs ├── WindowClientAreaSizeChangedEventArgs.cs ├── WindowClosedEventArgs.cs └── WindowShowStateChangedEventArgs.cs ├── Forms ├── AboutWnd.Designer.cs ├── AboutWnd.cs ├── AboutWnd.resx ├── AddKeyMappingDlg.Designer.cs ├── AddKeyMappingDlg.cs ├── AddKeyMappingDlg.resx ├── BorderWnd.Designer.cs ├── BorderWnd.cs ├── BorderWnd.resx ├── MouseEventOverlay.Designer.cs ├── MouseEventOverlay.cs ├── MouseEventOverlay.resx ├── MulticontrollerWnd.Designer.cs ├── MulticontrollerWnd.cs ├── MulticontrollerWnd.resx ├── OptionsDlg.Designer.cs ├── OptionsDlg.cs ├── OptionsDlg.resx ├── WindowGroupsForm.Designer.cs ├── WindowGroupsForm.cs └── WindowGroupsForm.resx ├── LICENSE ├── Multicontroller.cs ├── Program.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── SerializedSettings.cs ├── Settings.Designer.cs └── Settings.settings ├── README.md ├── Resources ├── dupcursor.bmp ├── dupcursorx.bmp ├── findere.bmp ├── finderf.bmp ├── icon.bmp ├── icon.ico ├── icon.pdn ├── icon.png ├── searchw.cur └── toonmono.cur ├── TTMulti.csproj ├── TTMulti.sln ├── ToontownController.cs ├── Win32.cs ├── WindowWatcher.cs └── app.config /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danfresneda/ttmulticontroller/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danfresneda/ttmulticontroller/HEAD/.gitignore -------------------------------------------------------------------------------- /ControllerGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danfresneda/ttmulticontroller/HEAD/ControllerGroup.cs -------------------------------------------------------------------------------- /ControllerPair.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danfresneda/ttmulticontroller/HEAD/ControllerPair.cs -------------------------------------------------------------------------------- /Controls/ControllerGroupView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danfresneda/ttmulticontroller/HEAD/Controls/ControllerGroupView.Designer.cs -------------------------------------------------------------------------------- /Controls/ControllerGroupView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danfresneda/ttmulticontroller/HEAD/Controls/ControllerGroupView.cs -------------------------------------------------------------------------------- /Controls/ControllerGroupView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danfresneda/ttmulticontroller/HEAD/Controls/ControllerGroupView.resx -------------------------------------------------------------------------------- /Controls/ControllerPairView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danfresneda/ttmulticontroller/HEAD/Controls/ControllerPairView.Designer.cs -------------------------------------------------------------------------------- /Controls/ControllerPairView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danfresneda/ttmulticontroller/HEAD/Controls/ControllerPairView.cs -------------------------------------------------------------------------------- /Controls/ControllerPairView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danfresneda/ttmulticontroller/HEAD/Controls/ControllerPairView.resx -------------------------------------------------------------------------------- /Controls/ControlsPicker.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danfresneda/ttmulticontroller/HEAD/Controls/ControlsPicker.Designer.cs -------------------------------------------------------------------------------- /Controls/ControlsPicker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danfresneda/ttmulticontroller/HEAD/Controls/ControlsPicker.cs -------------------------------------------------------------------------------- /Controls/ControlsPicker.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danfresneda/ttmulticontroller/HEAD/Controls/ControlsPicker.resx -------------------------------------------------------------------------------- /Controls/KeyPicker.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danfresneda/ttmulticontroller/HEAD/Controls/KeyPicker.Designer.cs -------------------------------------------------------------------------------- /Controls/KeyPicker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danfresneda/ttmulticontroller/HEAD/Controls/KeyPicker.cs -------------------------------------------------------------------------------- /Controls/KeyPicker.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danfresneda/ttmulticontroller/HEAD/Controls/KeyPicker.resx -------------------------------------------------------------------------------- /Controls/SelectWindowCrosshair.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danfresneda/ttmulticontroller/HEAD/Controls/SelectWindowCrosshair.Designer.cs -------------------------------------------------------------------------------- /Controls/SelectWindowCrosshair.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danfresneda/ttmulticontroller/HEAD/Controls/SelectWindowCrosshair.cs -------------------------------------------------------------------------------- /Controls/SelectWindowCrosshair.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danfresneda/ttmulticontroller/HEAD/Controls/SelectWindowCrosshair.resx -------------------------------------------------------------------------------- /Events/WindowActivatedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danfresneda/ttmulticontroller/HEAD/Events/WindowActivatedEventArgs.cs -------------------------------------------------------------------------------- /Events/WindowClientAreaLocationChangedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danfresneda/ttmulticontroller/HEAD/Events/WindowClientAreaLocationChangedEventArgs.cs -------------------------------------------------------------------------------- /Events/WindowClientAreaSizeChangedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danfresneda/ttmulticontroller/HEAD/Events/WindowClientAreaSizeChangedEventArgs.cs -------------------------------------------------------------------------------- /Events/WindowClosedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danfresneda/ttmulticontroller/HEAD/Events/WindowClosedEventArgs.cs -------------------------------------------------------------------------------- /Events/WindowShowStateChangedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danfresneda/ttmulticontroller/HEAD/Events/WindowShowStateChangedEventArgs.cs -------------------------------------------------------------------------------- /Forms/AboutWnd.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danfresneda/ttmulticontroller/HEAD/Forms/AboutWnd.Designer.cs -------------------------------------------------------------------------------- /Forms/AboutWnd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danfresneda/ttmulticontroller/HEAD/Forms/AboutWnd.cs -------------------------------------------------------------------------------- /Forms/AboutWnd.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danfresneda/ttmulticontroller/HEAD/Forms/AboutWnd.resx -------------------------------------------------------------------------------- /Forms/AddKeyMappingDlg.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danfresneda/ttmulticontroller/HEAD/Forms/AddKeyMappingDlg.Designer.cs -------------------------------------------------------------------------------- /Forms/AddKeyMappingDlg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danfresneda/ttmulticontroller/HEAD/Forms/AddKeyMappingDlg.cs -------------------------------------------------------------------------------- /Forms/AddKeyMappingDlg.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danfresneda/ttmulticontroller/HEAD/Forms/AddKeyMappingDlg.resx -------------------------------------------------------------------------------- /Forms/BorderWnd.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danfresneda/ttmulticontroller/HEAD/Forms/BorderWnd.Designer.cs -------------------------------------------------------------------------------- /Forms/BorderWnd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danfresneda/ttmulticontroller/HEAD/Forms/BorderWnd.cs -------------------------------------------------------------------------------- /Forms/BorderWnd.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danfresneda/ttmulticontroller/HEAD/Forms/BorderWnd.resx -------------------------------------------------------------------------------- /Forms/MouseEventOverlay.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danfresneda/ttmulticontroller/HEAD/Forms/MouseEventOverlay.Designer.cs -------------------------------------------------------------------------------- /Forms/MouseEventOverlay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danfresneda/ttmulticontroller/HEAD/Forms/MouseEventOverlay.cs -------------------------------------------------------------------------------- /Forms/MouseEventOverlay.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danfresneda/ttmulticontroller/HEAD/Forms/MouseEventOverlay.resx -------------------------------------------------------------------------------- /Forms/MulticontrollerWnd.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danfresneda/ttmulticontroller/HEAD/Forms/MulticontrollerWnd.Designer.cs -------------------------------------------------------------------------------- /Forms/MulticontrollerWnd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danfresneda/ttmulticontroller/HEAD/Forms/MulticontrollerWnd.cs -------------------------------------------------------------------------------- /Forms/MulticontrollerWnd.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danfresneda/ttmulticontroller/HEAD/Forms/MulticontrollerWnd.resx -------------------------------------------------------------------------------- /Forms/OptionsDlg.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danfresneda/ttmulticontroller/HEAD/Forms/OptionsDlg.Designer.cs -------------------------------------------------------------------------------- /Forms/OptionsDlg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danfresneda/ttmulticontroller/HEAD/Forms/OptionsDlg.cs -------------------------------------------------------------------------------- /Forms/OptionsDlg.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danfresneda/ttmulticontroller/HEAD/Forms/OptionsDlg.resx -------------------------------------------------------------------------------- /Forms/WindowGroupsForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danfresneda/ttmulticontroller/HEAD/Forms/WindowGroupsForm.Designer.cs -------------------------------------------------------------------------------- /Forms/WindowGroupsForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danfresneda/ttmulticontroller/HEAD/Forms/WindowGroupsForm.cs -------------------------------------------------------------------------------- /Forms/WindowGroupsForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danfresneda/ttmulticontroller/HEAD/Forms/WindowGroupsForm.resx -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danfresneda/ttmulticontroller/HEAD/LICENSE -------------------------------------------------------------------------------- /Multicontroller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danfresneda/ttmulticontroller/HEAD/Multicontroller.cs -------------------------------------------------------------------------------- /Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danfresneda/ttmulticontroller/HEAD/Program.cs -------------------------------------------------------------------------------- /Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danfresneda/ttmulticontroller/HEAD/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danfresneda/ttmulticontroller/HEAD/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danfresneda/ttmulticontroller/HEAD/Properties/Resources.resx -------------------------------------------------------------------------------- /Properties/SerializedSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danfresneda/ttmulticontroller/HEAD/Properties/SerializedSettings.cs -------------------------------------------------------------------------------- /Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danfresneda/ttmulticontroller/HEAD/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danfresneda/ttmulticontroller/HEAD/Properties/Settings.settings -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danfresneda/ttmulticontroller/HEAD/README.md -------------------------------------------------------------------------------- /Resources/dupcursor.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danfresneda/ttmulticontroller/HEAD/Resources/dupcursor.bmp -------------------------------------------------------------------------------- /Resources/dupcursorx.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danfresneda/ttmulticontroller/HEAD/Resources/dupcursorx.bmp -------------------------------------------------------------------------------- /Resources/findere.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danfresneda/ttmulticontroller/HEAD/Resources/findere.bmp -------------------------------------------------------------------------------- /Resources/finderf.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danfresneda/ttmulticontroller/HEAD/Resources/finderf.bmp -------------------------------------------------------------------------------- /Resources/icon.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danfresneda/ttmulticontroller/HEAD/Resources/icon.bmp -------------------------------------------------------------------------------- /Resources/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danfresneda/ttmulticontroller/HEAD/Resources/icon.ico -------------------------------------------------------------------------------- /Resources/icon.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danfresneda/ttmulticontroller/HEAD/Resources/icon.pdn -------------------------------------------------------------------------------- /Resources/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danfresneda/ttmulticontroller/HEAD/Resources/icon.png -------------------------------------------------------------------------------- /Resources/searchw.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danfresneda/ttmulticontroller/HEAD/Resources/searchw.cur -------------------------------------------------------------------------------- /Resources/toonmono.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danfresneda/ttmulticontroller/HEAD/Resources/toonmono.cur -------------------------------------------------------------------------------- /TTMulti.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danfresneda/ttmulticontroller/HEAD/TTMulti.csproj -------------------------------------------------------------------------------- /TTMulti.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danfresneda/ttmulticontroller/HEAD/TTMulti.sln -------------------------------------------------------------------------------- /ToontownController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danfresneda/ttmulticontroller/HEAD/ToontownController.cs -------------------------------------------------------------------------------- /Win32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danfresneda/ttmulticontroller/HEAD/Win32.cs -------------------------------------------------------------------------------- /WindowWatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danfresneda/ttmulticontroller/HEAD/WindowWatcher.cs -------------------------------------------------------------------------------- /app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danfresneda/ttmulticontroller/HEAD/app.config --------------------------------------------------------------------------------