├── .gitattributes ├── code-of-conduct.md ├── contributing.md ├── license ├── media └── awesome_game_production.jpg └── readme.md /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | readme.md merge=union 3 | -------------------------------------------------------------------------------- /code-of-conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhladiienko/awesome-game-production/HEAD/code-of-conduct.md -------------------------------------------------------------------------------- /contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhladiienko/awesome-game-production/HEAD/contributing.md -------------------------------------------------------------------------------- /license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhladiienko/awesome-game-production/HEAD/license -------------------------------------------------------------------------------- /media/awesome_game_production.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhladiienko/awesome-game-production/HEAD/media/awesome_game_production.jpg -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhladiienko/awesome-game-production/HEAD/readme.md --------------------------------------------------------------------------------