├── .gitignore ├── COPYING.txt ├── Football.fla ├── Football.swf ├── LICENSE ├── README.md ├── README.txt ├── activity ├── activity-football.svg └── activity.info ├── footballactivity.py ├── po └── Football.pot ├── screenshots └── en │ └── 1.jpg └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samswag/Football/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samswag/Football/HEAD/COPYING.txt -------------------------------------------------------------------------------- /Football.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samswag/Football/HEAD/Football.fla -------------------------------------------------------------------------------- /Football.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samswag/Football/HEAD/Football.swf -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samswag/Football/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Football 2 | 3 | A game for fun 4 | -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samswag/Football/HEAD/README.txt -------------------------------------------------------------------------------- /activity/activity-football.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samswag/Football/HEAD/activity/activity-football.svg -------------------------------------------------------------------------------- /activity/activity.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samswag/Football/HEAD/activity/activity.info -------------------------------------------------------------------------------- /footballactivity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samswag/Football/HEAD/footballactivity.py -------------------------------------------------------------------------------- /po/Football.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samswag/Football/HEAD/po/Football.pot -------------------------------------------------------------------------------- /screenshots/en/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samswag/Football/HEAD/screenshots/en/1.jpg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samswag/Football/HEAD/setup.py --------------------------------------------------------------------------------