Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -380,6 +380,11 @@ module(DPadFix Default)
target_sources(DPadFix PRIVATE modules/DPadFix/DPadFix.cpp)
target_link_libraries(DPadFix dinput8 detours)

module(ChordMacro Default)
target_sources(ChordMacro PRIVATE modules/ChordMacro/ChordMacro.cpp)
target_include_directories(ChordMacro PRIVATE include include/directx)
target_link_libraries(ChordMacro dinput8 detours SokuLib shlwapi user32 ws2_32)

module(EasyDecks Default)
target_sources(EasyDecks PRIVATE
modules/EasyDecks/EasyDecks.cpp)
Expand Down
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -250,6 +250,11 @@ This mod merges the previous functionality of WindowResizer, WindowedFullscreen,

*This module is configured in-game in Practice mode.*

### ChordMacro

Allows the player to perform sequence inputs (i.e. "haiduken"-style special moves that normally require special key stroke sequences such as 236B, 621C)
by means of a simpler, more accessible input. This is intended for players who prefer Smash Bros. style gameplay, or for players with disabilities that make sequence inputs difficult.

## Making a module

- Make a new folder in `modules/`. You can copy an existing module and adapt it.
Expand Down
Loading