├── .gitignore ├── LICENSE ├── README.md └── cannon-lover ├── __init__.py ├── base_bot.py ├── cannon_lover_bot.py ├── run.bat └── run.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hannessa/sc2-bots/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hannessa/sc2-bots/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hannessa/sc2-bots/HEAD/README.md -------------------------------------------------------------------------------- /cannon-lover/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hannessa/sc2-bots/HEAD/cannon-lover/__init__.py -------------------------------------------------------------------------------- /cannon-lover/base_bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hannessa/sc2-bots/HEAD/cannon-lover/base_bot.py -------------------------------------------------------------------------------- /cannon-lover/cannon_lover_bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hannessa/sc2-bots/HEAD/cannon-lover/cannon_lover_bot.py -------------------------------------------------------------------------------- /cannon-lover/run.bat: -------------------------------------------------------------------------------- 1 | python run.py 2 | cmd /k -------------------------------------------------------------------------------- /cannon-lover/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hannessa/sc2-bots/HEAD/cannon-lover/run.py --------------------------------------------------------------------------------