├── .gitattributes ├── .gitignore ├── LICENSE.txt ├── README.md ├── Stronghold 2 MP AI.sln └── Stronghold 2 MP AI ├── MemoryExt.cpp ├── MemoryExt.h ├── Signatures.h ├── Stronghold 2 MP AI.vcxproj ├── Stronghold 2 MP AI.vcxproj.filters └── main.cpp /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpnock/Stronghold2-MP-AI/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpnock/Stronghold2-MP-AI/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpnock/Stronghold2-MP-AI/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpnock/Stronghold2-MP-AI/HEAD/README.md -------------------------------------------------------------------------------- /Stronghold 2 MP AI.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpnock/Stronghold2-MP-AI/HEAD/Stronghold 2 MP AI.sln -------------------------------------------------------------------------------- /Stronghold 2 MP AI/MemoryExt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpnock/Stronghold2-MP-AI/HEAD/Stronghold 2 MP AI/MemoryExt.cpp -------------------------------------------------------------------------------- /Stronghold 2 MP AI/MemoryExt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpnock/Stronghold2-MP-AI/HEAD/Stronghold 2 MP AI/MemoryExt.h -------------------------------------------------------------------------------- /Stronghold 2 MP AI/Signatures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpnock/Stronghold2-MP-AI/HEAD/Stronghold 2 MP AI/Signatures.h -------------------------------------------------------------------------------- /Stronghold 2 MP AI/Stronghold 2 MP AI.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpnock/Stronghold2-MP-AI/HEAD/Stronghold 2 MP AI/Stronghold 2 MP AI.vcxproj -------------------------------------------------------------------------------- /Stronghold 2 MP AI/Stronghold 2 MP AI.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpnock/Stronghold2-MP-AI/HEAD/Stronghold 2 MP AI/Stronghold 2 MP AI.vcxproj.filters -------------------------------------------------------------------------------- /Stronghold 2 MP AI/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpnock/Stronghold2-MP-AI/HEAD/Stronghold 2 MP AI/main.cpp --------------------------------------------------------------------------------