├── .gitignore ├── LICENSE ├── README.md ├── code ├── Makefile ├── bot.cpp ├── bot.h ├── common.h ├── dwarf.cpp ├── dwarf.h ├── main.cpp ├── output.cpp ├── output.h ├── outstream.cpp ├── outstream.h ├── state.cpp └── state.h └── score.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-nikolaev/dwarven-outpost/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-nikolaev/dwarven-outpost/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-nikolaev/dwarven-outpost/HEAD/README.md -------------------------------------------------------------------------------- /code/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-nikolaev/dwarven-outpost/HEAD/code/Makefile -------------------------------------------------------------------------------- /code/bot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-nikolaev/dwarven-outpost/HEAD/code/bot.cpp -------------------------------------------------------------------------------- /code/bot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-nikolaev/dwarven-outpost/HEAD/code/bot.h -------------------------------------------------------------------------------- /code/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-nikolaev/dwarven-outpost/HEAD/code/common.h -------------------------------------------------------------------------------- /code/dwarf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-nikolaev/dwarven-outpost/HEAD/code/dwarf.cpp -------------------------------------------------------------------------------- /code/dwarf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-nikolaev/dwarven-outpost/HEAD/code/dwarf.h -------------------------------------------------------------------------------- /code/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-nikolaev/dwarven-outpost/HEAD/code/main.cpp -------------------------------------------------------------------------------- /code/output.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-nikolaev/dwarven-outpost/HEAD/code/output.cpp -------------------------------------------------------------------------------- /code/output.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-nikolaev/dwarven-outpost/HEAD/code/output.h -------------------------------------------------------------------------------- /code/outstream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-nikolaev/dwarven-outpost/HEAD/code/outstream.cpp -------------------------------------------------------------------------------- /code/outstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-nikolaev/dwarven-outpost/HEAD/code/outstream.h -------------------------------------------------------------------------------- /code/state.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-nikolaev/dwarven-outpost/HEAD/code/state.cpp -------------------------------------------------------------------------------- /code/state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-nikolaev/dwarven-outpost/HEAD/code/state.h -------------------------------------------------------------------------------- /score.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a-nikolaev/dwarven-outpost/HEAD/score.rb --------------------------------------------------------------------------------