├── .gitignore ├── CONTRIBUTORS.md ├── LICENSE ├── README.md ├── csgomenumaker ├── __init__.py ├── __main__.py ├── command │ ├── __init__.py │ ├── command.py │ ├── compound.py │ ├── dialog.py │ ├── echo.py │ ├── file.py │ ├── folder.py │ ├── indirect.py │ ├── navstate │ │ ├── __init__.py │ │ ├── horz.py │ │ ├── navstate.py │ │ ├── vert.py │ │ └── vertfolder.py │ ├── null.py │ ├── placeholder.py │ ├── primitive.py │ ├── realias.py │ └── root.py ├── component │ ├── __init__.py │ ├── bots.py │ ├── cheats.py │ ├── component.py │ ├── config.py │ ├── debug.py │ ├── demo.py │ ├── generic.py │ ├── multiplayer.py │ ├── server.py │ └── sound.py ├── docgen │ ├── __init__.py │ ├── __main__.py │ └── docgen.py ├── emulator │ ├── __init__.py │ ├── __main__.py │ └── emulator.py ├── loader │ ├── __init__.py │ ├── loader.py │ └── settings.py ├── menu │ ├── __init__.py │ ├── bar.py │ ├── choice.py │ ├── choicevar.py │ ├── choicevarbinary.py │ ├── fireable.py │ ├── fireablecmd.py │ ├── folder.py │ ├── menu.py │ ├── message.py │ ├── presetchooser.py │ ├── root.py │ └── slotchooser.py ├── misc │ ├── __init__.py │ ├── loggable.py │ ├── math.py │ ├── randomwords.py │ └── text.py └── param │ ├── __init__.py │ ├── assoc.py │ ├── binary.py │ ├── color.py │ ├── desc.py │ ├── flex.py │ ├── name.py │ ├── number.py │ ├── override.py │ ├── param.py │ ├── paramobj.py │ ├── position.py │ ├── sequence.py │ └── string.py └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citrusCS/csgo-menu-maker/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citrusCS/csgo-menu-maker/HEAD/CONTRIBUTORS.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citrusCS/csgo-menu-maker/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citrusCS/csgo-menu-maker/HEAD/README.md -------------------------------------------------------------------------------- /csgomenumaker/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citrusCS/csgo-menu-maker/HEAD/csgomenumaker/__init__.py -------------------------------------------------------------------------------- /csgomenumaker/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citrusCS/csgo-menu-maker/HEAD/csgomenumaker/__main__.py -------------------------------------------------------------------------------- /csgomenumaker/command/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citrusCS/csgo-menu-maker/HEAD/csgomenumaker/command/__init__.py -------------------------------------------------------------------------------- /csgomenumaker/command/command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citrusCS/csgo-menu-maker/HEAD/csgomenumaker/command/command.py -------------------------------------------------------------------------------- /csgomenumaker/command/compound.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citrusCS/csgo-menu-maker/HEAD/csgomenumaker/command/compound.py -------------------------------------------------------------------------------- /csgomenumaker/command/dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citrusCS/csgo-menu-maker/HEAD/csgomenumaker/command/dialog.py -------------------------------------------------------------------------------- /csgomenumaker/command/echo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citrusCS/csgo-menu-maker/HEAD/csgomenumaker/command/echo.py -------------------------------------------------------------------------------- /csgomenumaker/command/file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citrusCS/csgo-menu-maker/HEAD/csgomenumaker/command/file.py -------------------------------------------------------------------------------- /csgomenumaker/command/folder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citrusCS/csgo-menu-maker/HEAD/csgomenumaker/command/folder.py -------------------------------------------------------------------------------- /csgomenumaker/command/indirect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citrusCS/csgo-menu-maker/HEAD/csgomenumaker/command/indirect.py -------------------------------------------------------------------------------- /csgomenumaker/command/navstate/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citrusCS/csgo-menu-maker/HEAD/csgomenumaker/command/navstate/__init__.py -------------------------------------------------------------------------------- /csgomenumaker/command/navstate/horz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citrusCS/csgo-menu-maker/HEAD/csgomenumaker/command/navstate/horz.py -------------------------------------------------------------------------------- /csgomenumaker/command/navstate/navstate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citrusCS/csgo-menu-maker/HEAD/csgomenumaker/command/navstate/navstate.py -------------------------------------------------------------------------------- /csgomenumaker/command/navstate/vert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citrusCS/csgo-menu-maker/HEAD/csgomenumaker/command/navstate/vert.py -------------------------------------------------------------------------------- /csgomenumaker/command/navstate/vertfolder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citrusCS/csgo-menu-maker/HEAD/csgomenumaker/command/navstate/vertfolder.py -------------------------------------------------------------------------------- /csgomenumaker/command/null.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citrusCS/csgo-menu-maker/HEAD/csgomenumaker/command/null.py -------------------------------------------------------------------------------- /csgomenumaker/command/placeholder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citrusCS/csgo-menu-maker/HEAD/csgomenumaker/command/placeholder.py -------------------------------------------------------------------------------- /csgomenumaker/command/primitive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citrusCS/csgo-menu-maker/HEAD/csgomenumaker/command/primitive.py -------------------------------------------------------------------------------- /csgomenumaker/command/realias.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citrusCS/csgo-menu-maker/HEAD/csgomenumaker/command/realias.py -------------------------------------------------------------------------------- /csgomenumaker/command/root.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citrusCS/csgo-menu-maker/HEAD/csgomenumaker/command/root.py -------------------------------------------------------------------------------- /csgomenumaker/component/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citrusCS/csgo-menu-maker/HEAD/csgomenumaker/component/__init__.py -------------------------------------------------------------------------------- /csgomenumaker/component/bots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citrusCS/csgo-menu-maker/HEAD/csgomenumaker/component/bots.py -------------------------------------------------------------------------------- /csgomenumaker/component/cheats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citrusCS/csgo-menu-maker/HEAD/csgomenumaker/component/cheats.py -------------------------------------------------------------------------------- /csgomenumaker/component/component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citrusCS/csgo-menu-maker/HEAD/csgomenumaker/component/component.py -------------------------------------------------------------------------------- /csgomenumaker/component/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citrusCS/csgo-menu-maker/HEAD/csgomenumaker/component/config.py -------------------------------------------------------------------------------- /csgomenumaker/component/debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citrusCS/csgo-menu-maker/HEAD/csgomenumaker/component/debug.py -------------------------------------------------------------------------------- /csgomenumaker/component/demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citrusCS/csgo-menu-maker/HEAD/csgomenumaker/component/demo.py -------------------------------------------------------------------------------- /csgomenumaker/component/generic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citrusCS/csgo-menu-maker/HEAD/csgomenumaker/component/generic.py -------------------------------------------------------------------------------- /csgomenumaker/component/multiplayer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citrusCS/csgo-menu-maker/HEAD/csgomenumaker/component/multiplayer.py -------------------------------------------------------------------------------- /csgomenumaker/component/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citrusCS/csgo-menu-maker/HEAD/csgomenumaker/component/server.py -------------------------------------------------------------------------------- /csgomenumaker/component/sound.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citrusCS/csgo-menu-maker/HEAD/csgomenumaker/component/sound.py -------------------------------------------------------------------------------- /csgomenumaker/docgen/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /csgomenumaker/docgen/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citrusCS/csgo-menu-maker/HEAD/csgomenumaker/docgen/__main__.py -------------------------------------------------------------------------------- /csgomenumaker/docgen/docgen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citrusCS/csgo-menu-maker/HEAD/csgomenumaker/docgen/docgen.py -------------------------------------------------------------------------------- /csgomenumaker/emulator/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /csgomenumaker/emulator/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citrusCS/csgo-menu-maker/HEAD/csgomenumaker/emulator/__main__.py -------------------------------------------------------------------------------- /csgomenumaker/emulator/emulator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citrusCS/csgo-menu-maker/HEAD/csgomenumaker/emulator/emulator.py -------------------------------------------------------------------------------- /csgomenumaker/loader/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citrusCS/csgo-menu-maker/HEAD/csgomenumaker/loader/__init__.py -------------------------------------------------------------------------------- /csgomenumaker/loader/loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citrusCS/csgo-menu-maker/HEAD/csgomenumaker/loader/loader.py -------------------------------------------------------------------------------- /csgomenumaker/loader/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citrusCS/csgo-menu-maker/HEAD/csgomenumaker/loader/settings.py -------------------------------------------------------------------------------- /csgomenumaker/menu/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citrusCS/csgo-menu-maker/HEAD/csgomenumaker/menu/__init__.py -------------------------------------------------------------------------------- /csgomenumaker/menu/bar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citrusCS/csgo-menu-maker/HEAD/csgomenumaker/menu/bar.py -------------------------------------------------------------------------------- /csgomenumaker/menu/choice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citrusCS/csgo-menu-maker/HEAD/csgomenumaker/menu/choice.py -------------------------------------------------------------------------------- /csgomenumaker/menu/choicevar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citrusCS/csgo-menu-maker/HEAD/csgomenumaker/menu/choicevar.py -------------------------------------------------------------------------------- /csgomenumaker/menu/choicevarbinary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citrusCS/csgo-menu-maker/HEAD/csgomenumaker/menu/choicevarbinary.py -------------------------------------------------------------------------------- /csgomenumaker/menu/fireable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citrusCS/csgo-menu-maker/HEAD/csgomenumaker/menu/fireable.py -------------------------------------------------------------------------------- /csgomenumaker/menu/fireablecmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citrusCS/csgo-menu-maker/HEAD/csgomenumaker/menu/fireablecmd.py -------------------------------------------------------------------------------- /csgomenumaker/menu/folder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citrusCS/csgo-menu-maker/HEAD/csgomenumaker/menu/folder.py -------------------------------------------------------------------------------- /csgomenumaker/menu/menu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citrusCS/csgo-menu-maker/HEAD/csgomenumaker/menu/menu.py -------------------------------------------------------------------------------- /csgomenumaker/menu/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citrusCS/csgo-menu-maker/HEAD/csgomenumaker/menu/message.py -------------------------------------------------------------------------------- /csgomenumaker/menu/presetchooser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citrusCS/csgo-menu-maker/HEAD/csgomenumaker/menu/presetchooser.py -------------------------------------------------------------------------------- /csgomenumaker/menu/root.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citrusCS/csgo-menu-maker/HEAD/csgomenumaker/menu/root.py -------------------------------------------------------------------------------- /csgomenumaker/menu/slotchooser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citrusCS/csgo-menu-maker/HEAD/csgomenumaker/menu/slotchooser.py -------------------------------------------------------------------------------- /csgomenumaker/misc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citrusCS/csgo-menu-maker/HEAD/csgomenumaker/misc/__init__.py -------------------------------------------------------------------------------- /csgomenumaker/misc/loggable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citrusCS/csgo-menu-maker/HEAD/csgomenumaker/misc/loggable.py -------------------------------------------------------------------------------- /csgomenumaker/misc/math.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citrusCS/csgo-menu-maker/HEAD/csgomenumaker/misc/math.py -------------------------------------------------------------------------------- /csgomenumaker/misc/randomwords.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citrusCS/csgo-menu-maker/HEAD/csgomenumaker/misc/randomwords.py -------------------------------------------------------------------------------- /csgomenumaker/misc/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citrusCS/csgo-menu-maker/HEAD/csgomenumaker/misc/text.py -------------------------------------------------------------------------------- /csgomenumaker/param/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citrusCS/csgo-menu-maker/HEAD/csgomenumaker/param/__init__.py -------------------------------------------------------------------------------- /csgomenumaker/param/assoc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citrusCS/csgo-menu-maker/HEAD/csgomenumaker/param/assoc.py -------------------------------------------------------------------------------- /csgomenumaker/param/binary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citrusCS/csgo-menu-maker/HEAD/csgomenumaker/param/binary.py -------------------------------------------------------------------------------- /csgomenumaker/param/color.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citrusCS/csgo-menu-maker/HEAD/csgomenumaker/param/color.py -------------------------------------------------------------------------------- /csgomenumaker/param/desc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citrusCS/csgo-menu-maker/HEAD/csgomenumaker/param/desc.py -------------------------------------------------------------------------------- /csgomenumaker/param/flex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citrusCS/csgo-menu-maker/HEAD/csgomenumaker/param/flex.py -------------------------------------------------------------------------------- /csgomenumaker/param/name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citrusCS/csgo-menu-maker/HEAD/csgomenumaker/param/name.py -------------------------------------------------------------------------------- /csgomenumaker/param/number.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citrusCS/csgo-menu-maker/HEAD/csgomenumaker/param/number.py -------------------------------------------------------------------------------- /csgomenumaker/param/override.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citrusCS/csgo-menu-maker/HEAD/csgomenumaker/param/override.py -------------------------------------------------------------------------------- /csgomenumaker/param/param.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citrusCS/csgo-menu-maker/HEAD/csgomenumaker/param/param.py -------------------------------------------------------------------------------- /csgomenumaker/param/paramobj.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citrusCS/csgo-menu-maker/HEAD/csgomenumaker/param/paramobj.py -------------------------------------------------------------------------------- /csgomenumaker/param/position.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citrusCS/csgo-menu-maker/HEAD/csgomenumaker/param/position.py -------------------------------------------------------------------------------- /csgomenumaker/param/sequence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citrusCS/csgo-menu-maker/HEAD/csgomenumaker/param/sequence.py -------------------------------------------------------------------------------- /csgomenumaker/param/string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citrusCS/csgo-menu-maker/HEAD/csgomenumaker/param/string.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citrusCS/csgo-menu-maker/HEAD/setup.py --------------------------------------------------------------------------------