├── .idea ├── .gitignore ├── Commando.iml ├── misc.xml ├── modules.xml ├── php.xml └── vcs.xml ├── .poggit.yml ├── LICENSE ├── README.md ├── commando.png ├── composer.json ├── composer.lock ├── docs └── MIGRATION.md ├── src └── CortexPE │ └── Commando │ ├── BaseCommand.php │ ├── BaseSubCommand.php │ ├── IRunnable.php │ ├── PacketHooker.php │ ├── args │ ├── BaseArgument.php │ ├── BlockPositionArgument.php │ ├── BooleanArgument.php │ ├── FloatArgument.php │ ├── IntegerArgument.php │ ├── RawStringArgument.php │ ├── StringEnumArgument.php │ ├── TargetPlayerArgument.php │ ├── TextArgument.php │ └── Vector3Argument.php │ ├── constraint │ ├── BaseConstraint.php │ ├── ConsoleRequiredConstraint.php │ └── InGameRequiredConstraint.php │ ├── exception │ ├── ArgumentOrderException.php │ ├── CommandoException.php │ ├── HookAlreadyRegistered.php │ └── InvalidErrorCode.php │ ├── store │ └── SoftEnumStore.php │ └── traits │ ├── ArgumentableTrait.php │ └── IArgumentable.php └── virion.yml /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paroxity/Commando/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/Commando.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paroxity/Commando/HEAD/.idea/Commando.iml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paroxity/Commando/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paroxity/Commando/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/php.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paroxity/Commando/HEAD/.idea/php.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paroxity/Commando/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.poggit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paroxity/Commando/HEAD/.poggit.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paroxity/Commando/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paroxity/Commando/HEAD/README.md -------------------------------------------------------------------------------- /commando.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paroxity/Commando/HEAD/commando.png -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paroxity/Commando/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paroxity/Commando/HEAD/composer.lock -------------------------------------------------------------------------------- /docs/MIGRATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paroxity/Commando/HEAD/docs/MIGRATION.md -------------------------------------------------------------------------------- /src/CortexPE/Commando/BaseCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paroxity/Commando/HEAD/src/CortexPE/Commando/BaseCommand.php -------------------------------------------------------------------------------- /src/CortexPE/Commando/BaseSubCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paroxity/Commando/HEAD/src/CortexPE/Commando/BaseSubCommand.php -------------------------------------------------------------------------------- /src/CortexPE/Commando/IRunnable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paroxity/Commando/HEAD/src/CortexPE/Commando/IRunnable.php -------------------------------------------------------------------------------- /src/CortexPE/Commando/PacketHooker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paroxity/Commando/HEAD/src/CortexPE/Commando/PacketHooker.php -------------------------------------------------------------------------------- /src/CortexPE/Commando/args/BaseArgument.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paroxity/Commando/HEAD/src/CortexPE/Commando/args/BaseArgument.php -------------------------------------------------------------------------------- /src/CortexPE/Commando/args/BlockPositionArgument.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paroxity/Commando/HEAD/src/CortexPE/Commando/args/BlockPositionArgument.php -------------------------------------------------------------------------------- /src/CortexPE/Commando/args/BooleanArgument.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paroxity/Commando/HEAD/src/CortexPE/Commando/args/BooleanArgument.php -------------------------------------------------------------------------------- /src/CortexPE/Commando/args/FloatArgument.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paroxity/Commando/HEAD/src/CortexPE/Commando/args/FloatArgument.php -------------------------------------------------------------------------------- /src/CortexPE/Commando/args/IntegerArgument.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paroxity/Commando/HEAD/src/CortexPE/Commando/args/IntegerArgument.php -------------------------------------------------------------------------------- /src/CortexPE/Commando/args/RawStringArgument.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paroxity/Commando/HEAD/src/CortexPE/Commando/args/RawStringArgument.php -------------------------------------------------------------------------------- /src/CortexPE/Commando/args/StringEnumArgument.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paroxity/Commando/HEAD/src/CortexPE/Commando/args/StringEnumArgument.php -------------------------------------------------------------------------------- /src/CortexPE/Commando/args/TargetPlayerArgument.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paroxity/Commando/HEAD/src/CortexPE/Commando/args/TargetPlayerArgument.php -------------------------------------------------------------------------------- /src/CortexPE/Commando/args/TextArgument.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paroxity/Commando/HEAD/src/CortexPE/Commando/args/TextArgument.php -------------------------------------------------------------------------------- /src/CortexPE/Commando/args/Vector3Argument.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paroxity/Commando/HEAD/src/CortexPE/Commando/args/Vector3Argument.php -------------------------------------------------------------------------------- /src/CortexPE/Commando/constraint/BaseConstraint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paroxity/Commando/HEAD/src/CortexPE/Commando/constraint/BaseConstraint.php -------------------------------------------------------------------------------- /src/CortexPE/Commando/constraint/ConsoleRequiredConstraint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paroxity/Commando/HEAD/src/CortexPE/Commando/constraint/ConsoleRequiredConstraint.php -------------------------------------------------------------------------------- /src/CortexPE/Commando/constraint/InGameRequiredConstraint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paroxity/Commando/HEAD/src/CortexPE/Commando/constraint/InGameRequiredConstraint.php -------------------------------------------------------------------------------- /src/CortexPE/Commando/exception/ArgumentOrderException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paroxity/Commando/HEAD/src/CortexPE/Commando/exception/ArgumentOrderException.php -------------------------------------------------------------------------------- /src/CortexPE/Commando/exception/CommandoException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paroxity/Commando/HEAD/src/CortexPE/Commando/exception/CommandoException.php -------------------------------------------------------------------------------- /src/CortexPE/Commando/exception/HookAlreadyRegistered.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paroxity/Commando/HEAD/src/CortexPE/Commando/exception/HookAlreadyRegistered.php -------------------------------------------------------------------------------- /src/CortexPE/Commando/exception/InvalidErrorCode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paroxity/Commando/HEAD/src/CortexPE/Commando/exception/InvalidErrorCode.php -------------------------------------------------------------------------------- /src/CortexPE/Commando/store/SoftEnumStore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paroxity/Commando/HEAD/src/CortexPE/Commando/store/SoftEnumStore.php -------------------------------------------------------------------------------- /src/CortexPE/Commando/traits/ArgumentableTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paroxity/Commando/HEAD/src/CortexPE/Commando/traits/ArgumentableTrait.php -------------------------------------------------------------------------------- /src/CortexPE/Commando/traits/IArgumentable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paroxity/Commando/HEAD/src/CortexPE/Commando/traits/IArgumentable.php -------------------------------------------------------------------------------- /virion.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paroxity/Commando/HEAD/virion.yml --------------------------------------------------------------------------------