├── .gitattributes ├── .gitignore ├── 3ds.ld ├── Includes ├── common.h ├── configs.h ├── ctr │ ├── AC.h │ ├── APT.h │ ├── CFGNOR.h │ ├── CSND.h │ ├── FS.h │ ├── GPU.h │ ├── GSP.h │ ├── GX.h │ ├── HID.h │ ├── HTTPC.h │ ├── IR.h │ ├── OS.h │ ├── SHDR.h │ ├── SOC.h │ ├── srv.h │ ├── svc.h │ └── types.h ├── hid.h ├── libntrplg │ ├── 3dstypes.h │ ├── constants.h │ ├── func.h │ ├── global.h │ ├── integer.h │ ├── memory.h │ ├── netdb.h │ ├── ns │ │ └── ns.h │ ├── sharedfunc.h │ └── xprintf.h ├── main.h ├── netinet │ ├── in.h │ └── tcp.h ├── plugin.h ├── result.h ├── sys │ └── socket.h └── types.h ├── README.md ├── Resources ├── GateShark.txt ├── big2little_endian.py ├── cheats_logo.png ├── credit_logo.png ├── hotkeys_logo.png ├── libpng16.dll ├── png2c.exe ├── speed_logo.png ├── sumo_bg.png └── sumo_header.png ├── Sources ├── appearance_modifiers.c ├── battle_modifiers.c ├── cheats.h ├── currency_modifiers.c ├── exp_multipliers.c ├── font.h ├── font6x10Linux.h ├── font_mini_4x6.h ├── helpers │ ├── bootloader.s │ ├── config.c │ ├── config.h │ ├── ctrulib.c │ ├── ctrulib.h │ ├── entry_name_manager.c │ ├── helpers.c │ ├── index_manager.c │ ├── manager.h │ └── svc.h ├── illegal_cheats.c ├── items.c ├── items.h ├── menu.c ├── misc.c ├── movement_modifiers.c ├── ov.c ├── ov.h ├── overlay_cheats.c ├── pokemon_modifiers.c ├── pokemon_spawner.c ├── pokemon_spawner.h ├── pokeutil │ ├── lookup.h │ ├── pokeball.h │ ├── pokemon.c │ ├── pokemon.h │ └── symbols.h ├── qr_codes.c └── time_modifiers.c ├── lib ├── libShark2NTR_dev.a ├── libc.a ├── libctr.a ├── libg.a ├── libgcc.a ├── libntr.a └── libsysbase.a ├── obj └── .gitignore ├── ofiles ├── cheats_logo.o ├── credit_logo.o ├── hotkeys_logo.o ├── main.o ├── note.o ├── speed_logo.o └── sumo_bg.o └── plugin ├── 0004000000164800 └── .gitignore └── 0004000000175E00 └── .gitignore /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalogMan151/sumoCheatMenu/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalogMan151/sumoCheatMenu/HEAD/.gitignore -------------------------------------------------------------------------------- /3ds.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalogMan151/sumoCheatMenu/HEAD/3ds.ld -------------------------------------------------------------------------------- /Includes/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalogMan151/sumoCheatMenu/HEAD/Includes/common.h -------------------------------------------------------------------------------- /Includes/configs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalogMan151/sumoCheatMenu/HEAD/Includes/configs.h -------------------------------------------------------------------------------- /Includes/ctr/AC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalogMan151/sumoCheatMenu/HEAD/Includes/ctr/AC.h -------------------------------------------------------------------------------- /Includes/ctr/APT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalogMan151/sumoCheatMenu/HEAD/Includes/ctr/APT.h -------------------------------------------------------------------------------- /Includes/ctr/CFGNOR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalogMan151/sumoCheatMenu/HEAD/Includes/ctr/CFGNOR.h -------------------------------------------------------------------------------- /Includes/ctr/CSND.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalogMan151/sumoCheatMenu/HEAD/Includes/ctr/CSND.h -------------------------------------------------------------------------------- /Includes/ctr/FS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalogMan151/sumoCheatMenu/HEAD/Includes/ctr/FS.h -------------------------------------------------------------------------------- /Includes/ctr/GPU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalogMan151/sumoCheatMenu/HEAD/Includes/ctr/GPU.h -------------------------------------------------------------------------------- /Includes/ctr/GSP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalogMan151/sumoCheatMenu/HEAD/Includes/ctr/GSP.h -------------------------------------------------------------------------------- /Includes/ctr/GX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalogMan151/sumoCheatMenu/HEAD/Includes/ctr/GX.h -------------------------------------------------------------------------------- /Includes/ctr/HID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalogMan151/sumoCheatMenu/HEAD/Includes/ctr/HID.h -------------------------------------------------------------------------------- /Includes/ctr/HTTPC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalogMan151/sumoCheatMenu/HEAD/Includes/ctr/HTTPC.h -------------------------------------------------------------------------------- /Includes/ctr/IR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalogMan151/sumoCheatMenu/HEAD/Includes/ctr/IR.h -------------------------------------------------------------------------------- /Includes/ctr/OS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalogMan151/sumoCheatMenu/HEAD/Includes/ctr/OS.h -------------------------------------------------------------------------------- /Includes/ctr/SHDR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalogMan151/sumoCheatMenu/HEAD/Includes/ctr/SHDR.h -------------------------------------------------------------------------------- /Includes/ctr/SOC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalogMan151/sumoCheatMenu/HEAD/Includes/ctr/SOC.h -------------------------------------------------------------------------------- /Includes/ctr/srv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalogMan151/sumoCheatMenu/HEAD/Includes/ctr/srv.h -------------------------------------------------------------------------------- /Includes/ctr/svc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalogMan151/sumoCheatMenu/HEAD/Includes/ctr/svc.h -------------------------------------------------------------------------------- /Includes/ctr/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalogMan151/sumoCheatMenu/HEAD/Includes/ctr/types.h -------------------------------------------------------------------------------- /Includes/hid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalogMan151/sumoCheatMenu/HEAD/Includes/hid.h -------------------------------------------------------------------------------- /Includes/libntrplg/3dstypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalogMan151/sumoCheatMenu/HEAD/Includes/libntrplg/3dstypes.h -------------------------------------------------------------------------------- /Includes/libntrplg/constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalogMan151/sumoCheatMenu/HEAD/Includes/libntrplg/constants.h -------------------------------------------------------------------------------- /Includes/libntrplg/func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalogMan151/sumoCheatMenu/HEAD/Includes/libntrplg/func.h -------------------------------------------------------------------------------- /Includes/libntrplg/global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalogMan151/sumoCheatMenu/HEAD/Includes/libntrplg/global.h -------------------------------------------------------------------------------- /Includes/libntrplg/integer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalogMan151/sumoCheatMenu/HEAD/Includes/libntrplg/integer.h -------------------------------------------------------------------------------- /Includes/libntrplg/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalogMan151/sumoCheatMenu/HEAD/Includes/libntrplg/memory.h -------------------------------------------------------------------------------- /Includes/libntrplg/netdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalogMan151/sumoCheatMenu/HEAD/Includes/libntrplg/netdb.h -------------------------------------------------------------------------------- /Includes/libntrplg/ns/ns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalogMan151/sumoCheatMenu/HEAD/Includes/libntrplg/ns/ns.h -------------------------------------------------------------------------------- /Includes/libntrplg/sharedfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalogMan151/sumoCheatMenu/HEAD/Includes/libntrplg/sharedfunc.h -------------------------------------------------------------------------------- /Includes/libntrplg/xprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalogMan151/sumoCheatMenu/HEAD/Includes/libntrplg/xprintf.h -------------------------------------------------------------------------------- /Includes/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalogMan151/sumoCheatMenu/HEAD/Includes/main.h -------------------------------------------------------------------------------- /Includes/netinet/in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalogMan151/sumoCheatMenu/HEAD/Includes/netinet/in.h -------------------------------------------------------------------------------- /Includes/netinet/tcp.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Includes/plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalogMan151/sumoCheatMenu/HEAD/Includes/plugin.h -------------------------------------------------------------------------------- /Includes/result.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalogMan151/sumoCheatMenu/HEAD/Includes/result.h -------------------------------------------------------------------------------- /Includes/sys/socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalogMan151/sumoCheatMenu/HEAD/Includes/sys/socket.h -------------------------------------------------------------------------------- /Includes/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalogMan151/sumoCheatMenu/HEAD/Includes/types.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalogMan151/sumoCheatMenu/HEAD/README.md -------------------------------------------------------------------------------- /Resources/GateShark.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalogMan151/sumoCheatMenu/HEAD/Resources/GateShark.txt -------------------------------------------------------------------------------- /Resources/big2little_endian.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalogMan151/sumoCheatMenu/HEAD/Resources/big2little_endian.py -------------------------------------------------------------------------------- /Resources/cheats_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalogMan151/sumoCheatMenu/HEAD/Resources/cheats_logo.png -------------------------------------------------------------------------------- /Resources/credit_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalogMan151/sumoCheatMenu/HEAD/Resources/credit_logo.png -------------------------------------------------------------------------------- /Resources/hotkeys_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalogMan151/sumoCheatMenu/HEAD/Resources/hotkeys_logo.png -------------------------------------------------------------------------------- /Resources/libpng16.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalogMan151/sumoCheatMenu/HEAD/Resources/libpng16.dll -------------------------------------------------------------------------------- /Resources/png2c.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalogMan151/sumoCheatMenu/HEAD/Resources/png2c.exe -------------------------------------------------------------------------------- /Resources/speed_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalogMan151/sumoCheatMenu/HEAD/Resources/speed_logo.png -------------------------------------------------------------------------------- /Resources/sumo_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalogMan151/sumoCheatMenu/HEAD/Resources/sumo_bg.png -------------------------------------------------------------------------------- /Resources/sumo_header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalogMan151/sumoCheatMenu/HEAD/Resources/sumo_header.png -------------------------------------------------------------------------------- /Sources/appearance_modifiers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalogMan151/sumoCheatMenu/HEAD/Sources/appearance_modifiers.c -------------------------------------------------------------------------------- /Sources/battle_modifiers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalogMan151/sumoCheatMenu/HEAD/Sources/battle_modifiers.c -------------------------------------------------------------------------------- /Sources/cheats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalogMan151/sumoCheatMenu/HEAD/Sources/cheats.h -------------------------------------------------------------------------------- /Sources/currency_modifiers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalogMan151/sumoCheatMenu/HEAD/Sources/currency_modifiers.c -------------------------------------------------------------------------------- /Sources/exp_multipliers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalogMan151/sumoCheatMenu/HEAD/Sources/exp_multipliers.c -------------------------------------------------------------------------------- /Sources/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalogMan151/sumoCheatMenu/HEAD/Sources/font.h -------------------------------------------------------------------------------- /Sources/font6x10Linux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalogMan151/sumoCheatMenu/HEAD/Sources/font6x10Linux.h -------------------------------------------------------------------------------- /Sources/font_mini_4x6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalogMan151/sumoCheatMenu/HEAD/Sources/font_mini_4x6.h -------------------------------------------------------------------------------- /Sources/helpers/bootloader.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalogMan151/sumoCheatMenu/HEAD/Sources/helpers/bootloader.s -------------------------------------------------------------------------------- /Sources/helpers/config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalogMan151/sumoCheatMenu/HEAD/Sources/helpers/config.c -------------------------------------------------------------------------------- /Sources/helpers/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalogMan151/sumoCheatMenu/HEAD/Sources/helpers/config.h -------------------------------------------------------------------------------- /Sources/helpers/ctrulib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalogMan151/sumoCheatMenu/HEAD/Sources/helpers/ctrulib.c -------------------------------------------------------------------------------- /Sources/helpers/ctrulib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalogMan151/sumoCheatMenu/HEAD/Sources/helpers/ctrulib.h -------------------------------------------------------------------------------- /Sources/helpers/entry_name_manager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalogMan151/sumoCheatMenu/HEAD/Sources/helpers/entry_name_manager.c -------------------------------------------------------------------------------- /Sources/helpers/helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalogMan151/sumoCheatMenu/HEAD/Sources/helpers/helpers.c -------------------------------------------------------------------------------- /Sources/helpers/index_manager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalogMan151/sumoCheatMenu/HEAD/Sources/helpers/index_manager.c -------------------------------------------------------------------------------- /Sources/helpers/manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalogMan151/sumoCheatMenu/HEAD/Sources/helpers/manager.h -------------------------------------------------------------------------------- /Sources/helpers/svc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalogMan151/sumoCheatMenu/HEAD/Sources/helpers/svc.h -------------------------------------------------------------------------------- /Sources/illegal_cheats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalogMan151/sumoCheatMenu/HEAD/Sources/illegal_cheats.c -------------------------------------------------------------------------------- /Sources/items.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalogMan151/sumoCheatMenu/HEAD/Sources/items.c -------------------------------------------------------------------------------- /Sources/items.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalogMan151/sumoCheatMenu/HEAD/Sources/items.h -------------------------------------------------------------------------------- /Sources/menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalogMan151/sumoCheatMenu/HEAD/Sources/menu.c -------------------------------------------------------------------------------- /Sources/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalogMan151/sumoCheatMenu/HEAD/Sources/misc.c -------------------------------------------------------------------------------- /Sources/movement_modifiers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalogMan151/sumoCheatMenu/HEAD/Sources/movement_modifiers.c -------------------------------------------------------------------------------- /Sources/ov.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalogMan151/sumoCheatMenu/HEAD/Sources/ov.c -------------------------------------------------------------------------------- /Sources/ov.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalogMan151/sumoCheatMenu/HEAD/Sources/ov.h -------------------------------------------------------------------------------- /Sources/overlay_cheats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalogMan151/sumoCheatMenu/HEAD/Sources/overlay_cheats.c -------------------------------------------------------------------------------- /Sources/pokemon_modifiers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalogMan151/sumoCheatMenu/HEAD/Sources/pokemon_modifiers.c -------------------------------------------------------------------------------- /Sources/pokemon_spawner.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalogMan151/sumoCheatMenu/HEAD/Sources/pokemon_spawner.c -------------------------------------------------------------------------------- /Sources/pokemon_spawner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalogMan151/sumoCheatMenu/HEAD/Sources/pokemon_spawner.h -------------------------------------------------------------------------------- /Sources/pokeutil/lookup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalogMan151/sumoCheatMenu/HEAD/Sources/pokeutil/lookup.h -------------------------------------------------------------------------------- /Sources/pokeutil/pokeball.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalogMan151/sumoCheatMenu/HEAD/Sources/pokeutil/pokeball.h -------------------------------------------------------------------------------- /Sources/pokeutil/pokemon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalogMan151/sumoCheatMenu/HEAD/Sources/pokeutil/pokemon.c -------------------------------------------------------------------------------- /Sources/pokeutil/pokemon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalogMan151/sumoCheatMenu/HEAD/Sources/pokeutil/pokemon.h -------------------------------------------------------------------------------- /Sources/pokeutil/symbols.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalogMan151/sumoCheatMenu/HEAD/Sources/pokeutil/symbols.h -------------------------------------------------------------------------------- /Sources/qr_codes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalogMan151/sumoCheatMenu/HEAD/Sources/qr_codes.c -------------------------------------------------------------------------------- /Sources/time_modifiers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalogMan151/sumoCheatMenu/HEAD/Sources/time_modifiers.c -------------------------------------------------------------------------------- /lib/libShark2NTR_dev.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalogMan151/sumoCheatMenu/HEAD/lib/libShark2NTR_dev.a -------------------------------------------------------------------------------- /lib/libc.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalogMan151/sumoCheatMenu/HEAD/lib/libc.a -------------------------------------------------------------------------------- /lib/libctr.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalogMan151/sumoCheatMenu/HEAD/lib/libctr.a -------------------------------------------------------------------------------- /lib/libg.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalogMan151/sumoCheatMenu/HEAD/lib/libg.a -------------------------------------------------------------------------------- /lib/libgcc.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalogMan151/sumoCheatMenu/HEAD/lib/libgcc.a -------------------------------------------------------------------------------- /lib/libntr.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalogMan151/sumoCheatMenu/HEAD/lib/libntr.a -------------------------------------------------------------------------------- /lib/libsysbase.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalogMan151/sumoCheatMenu/HEAD/lib/libsysbase.a -------------------------------------------------------------------------------- /obj/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalogMan151/sumoCheatMenu/HEAD/obj/.gitignore -------------------------------------------------------------------------------- /ofiles/cheats_logo.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalogMan151/sumoCheatMenu/HEAD/ofiles/cheats_logo.o -------------------------------------------------------------------------------- /ofiles/credit_logo.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalogMan151/sumoCheatMenu/HEAD/ofiles/credit_logo.o -------------------------------------------------------------------------------- /ofiles/hotkeys_logo.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalogMan151/sumoCheatMenu/HEAD/ofiles/hotkeys_logo.o -------------------------------------------------------------------------------- /ofiles/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalogMan151/sumoCheatMenu/HEAD/ofiles/main.o -------------------------------------------------------------------------------- /ofiles/note.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalogMan151/sumoCheatMenu/HEAD/ofiles/note.o -------------------------------------------------------------------------------- /ofiles/speed_logo.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalogMan151/sumoCheatMenu/HEAD/ofiles/speed_logo.o -------------------------------------------------------------------------------- /ofiles/sumo_bg.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalogMan151/sumoCheatMenu/HEAD/ofiles/sumo_bg.o -------------------------------------------------------------------------------- /plugin/0004000000164800/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalogMan151/sumoCheatMenu/HEAD/plugin/0004000000164800/.gitignore -------------------------------------------------------------------------------- /plugin/0004000000175E00/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnalogMan151/sumoCheatMenu/HEAD/plugin/0004000000175E00/.gitignore --------------------------------------------------------------------------------