├── .DS_Store ├── Warcraft ├── .DS_Store ├── Icon.ico ├── Icon.png ├── Util │ ├── .DS_Store │ ├── Units.cs │ ├── Buildings.cs │ ├── Sprite.cs │ ├── Base.cs │ ├── PathNode.cs │ ├── Information.cs │ └── Frame.cs ├── x64 │ ├── SDL2.dll │ ├── soft_oal.dll │ ├── libopenal.so.1 │ └── libSDL2-2.0.so.0 ├── x86 │ ├── SDL2.dll │ ├── soft_oal.dll │ ├── libopenal.so.1 │ └── libSDL2-2.0.so.0 ├── Content │ ├── Exit.png │ ├── Exit.xnb │ ├── Font.xnb │ ├── Mage.png │ ├── Mage.xnb │ ├── Play.png │ ├── Play.xnb │ ├── axe.png │ ├── axe.xnb │ ├── .DS_Store │ ├── Corpses.png │ ├── Cursor.png │ ├── Cursor.xnb │ ├── Daemon.png │ ├── Dwarven.png │ ├── Dwarven.xnb │ ├── Footman.png │ ├── Footman.xnb │ ├── Grunt.png │ ├── Grunt.xnb │ ├── Icons.png │ ├── Icons.xnb │ ├── Knight.png │ ├── Knight.xnb │ ├── Misc..png │ ├── Risland.png │ ├── Risland.xnb │ ├── arrow.png │ ├── arrow.xnb │ ├── sidebar.png │ ├── sidebar.xnb │ ├── Ballista.png │ ├── Ballista.xnb │ ├── Critters.png │ ├── Orcs │ │ ├── Ogre.png │ │ ├── Peon.png │ │ ├── Dragon.png │ │ ├── Grunt.png │ │ ├── Catapult.png │ │ ├── Death Knight.png │ │ ├── Giant Turtle.png │ │ ├── Goblin Sappers.png │ │ ├── Orc Oil Tanker.png │ │ ├── Orc Transport.png │ │ ├── Goblin Zeppelin.png │ │ ├── Ogre Juggernaut.png │ │ ├── Troll Axethrower.png │ │ ├── Troll Destroyer.png │ │ ├── Orc Buildings (Summer).png │ │ └── Orc Buildings (Winter).png │ ├── Peon_gold.png │ ├── Peon_gold.xnb │ ├── Skeleton.png │ ├── Skeleton.xnb │ ├── bin │ │ ├── .DS_Store │ │ ├── DesktopGL │ │ │ ├── axe.xnb │ │ │ ├── .DS_Store │ │ │ ├── Font.xnb │ │ │ ├── Grunt.xnb │ │ │ ├── Icons.xnb │ │ │ ├── Mage.xnb │ │ │ ├── Misc..xnb │ │ │ ├── arrow.xnb │ │ │ ├── Corpses.xnb │ │ │ ├── Critters.xnb │ │ │ ├── Cursor.xnb │ │ │ ├── Daemon.xnb │ │ │ ├── Dwarven.xnb │ │ │ ├── Footman.xnb │ │ │ ├── Knight.xnb │ │ │ ├── Skeleton.xnb │ │ │ ├── Orcs │ │ │ │ ├── Grunt.xnb │ │ │ │ ├── Ogre.xnb │ │ │ │ ├── Peon.xnb │ │ │ │ ├── Catapult.xnb │ │ │ │ ├── Dragon.xnb │ │ │ │ ├── Death Knight.xnb │ │ │ │ ├── Giant Turtle.xnb │ │ │ │ ├── Orc Transport.xnb │ │ │ │ ├── Goblin Sappers.xnb │ │ │ │ ├── Goblin Zeppelin.xnb │ │ │ │ ├── Ogre Juggernaut.xnb │ │ │ │ ├── Orc Oil Tanker.xnb │ │ │ │ ├── Troll Destroyer.xnb │ │ │ │ ├── Troll Axethrower.xnb │ │ │ │ ├── Orc Buildings (Summer).xnb │ │ │ │ └── Orc Buildings (Winter).xnb │ │ │ ├── Peon_dying.xnb │ │ │ ├── Peon_gold.xnb │ │ │ ├── Army Colors.xnb │ │ │ ├── Elven Archer.xnb │ │ │ ├── Humans │ │ │ │ ├── Knight.xnb │ │ │ │ ├── Mage.xnb │ │ │ │ ├── Ballista.xnb │ │ │ │ ├── Footman.xnb │ │ │ │ ├── Peasant.xnb │ │ │ │ ├── Battleship.xnb │ │ │ │ ├── Elven Archer.xnb │ │ │ │ ├── Gryphon Rider.xnb │ │ │ │ ├── Elven Destroyer.xnb │ │ │ │ ├── Human Oil Tanker.xnb │ │ │ │ ├── Human Transport.xnb │ │ │ │ ├── Gnomish Submarine.xnb │ │ │ │ ├── Gnomish Flying Machine.xnb │ │ │ │ ├── Dwarven Demolition Squad.xnb │ │ │ │ ├── Human Buildings (Summer).xnb │ │ │ │ └── Human Buildings (Winter).xnb │ │ │ ├── Peasant_dying.xnb │ │ │ ├── Peasant_gold.xnb │ │ │ ├── Peon_walking.xnb │ │ │ ├── Summer Tiles.xnb │ │ │ ├── Winter Tiles.xnb │ │ │ ├── Peasant_walking.xnb │ │ │ ├── Wasteland Tiles.xnb │ │ │ ├── Magic and Missiles.xnb │ │ │ ├── Troll Axethrower.xnb │ │ │ ├── Orc Buildings (Summer) .xnb │ │ │ └── Human Buildings (Summer).xnb │ │ └── Windows │ │ │ ├── Font.xnb │ │ │ ├── Grunt.xnb │ │ │ ├── Icons.xnb │ │ │ ├── Mage.xnb │ │ │ ├── arrow.xnb │ │ │ ├── axe.xnb │ │ │ ├── Cursor.xnb │ │ │ ├── Dwarven.xnb │ │ │ ├── Footman.xnb │ │ │ ├── Knight.xnb │ │ │ ├── Elven Archer.xnb │ │ │ ├── Peasant_gold.xnb │ │ │ ├── Summer Tiles.xnb │ │ │ ├── Peasant_dying.xnb │ │ │ ├── Peasant_walking.xnb │ │ │ ├── Troll Axethrower.xnb │ │ │ └── Human Buildings (Summer).xnb │ ├── obj │ │ ├── .DS_Store │ │ ├── DesktopGL │ │ │ ├── .DS_Store │ │ │ ├── Font.mgcontent │ │ │ ├── axe.mgcontent │ │ │ ├── Grunt.mgcontent │ │ │ ├── Icons.mgcontent │ │ │ ├── Mage.mgcontent │ │ │ ├── arrow.mgcontent │ │ │ ├── Cursor.mgcontent │ │ │ ├── Dwarven.mgcontent │ │ │ ├── Footman.mgcontent │ │ │ ├── Knight.mgcontent │ │ │ ├── Skeleton.mgcontent │ │ │ ├── Peon_dying.mgcontent │ │ │ ├── Peon_gold.mgcontent │ │ │ ├── Elven Archer.mgcontent │ │ │ ├── Peasant_gold.mgcontent │ │ │ ├── Peon_walking.mgcontent │ │ │ ├── Summer Tiles.mgcontent │ │ │ ├── Peasant_dying.mgcontent │ │ │ ├── Peasant_walking.mgcontent │ │ │ ├── Troll Axethrower.mgcontent │ │ │ ├── Orc Buildings (Summer) .mgcontent │ │ │ ├── Human Buildings (Summer).mgcontent │ │ │ ├── Daemon.mgcontent │ │ │ ├── Misc..mgcontent │ │ │ ├── Corpses.mgcontent │ │ │ ├── Critters.mgcontent │ │ │ ├── Orcs │ │ │ │ ├── Ogre.mgcontent │ │ │ │ ├── Peon.mgcontent │ │ │ │ ├── Dragon.mgcontent │ │ │ │ ├── Grunt.mgcontent │ │ │ │ ├── Catapult.mgcontent │ │ │ │ ├── Death Knight.mgcontent │ │ │ │ ├── Giant Turtle.mgcontent │ │ │ │ ├── Goblin Sappers.mgcontent │ │ │ │ ├── Orc Oil Tanker.mgcontent │ │ │ │ ├── Orc Transport.mgcontent │ │ │ │ ├── Goblin Zeppelin.mgcontent │ │ │ │ ├── Ogre Juggernaut.mgcontent │ │ │ │ ├── Troll Axethrower.mgcontent │ │ │ │ └── Troll Destroyer.mgcontent │ │ │ ├── Army Colors.mgcontent │ │ │ ├── Humans │ │ │ │ ├── Mage.mgcontent │ │ │ │ ├── Footman.mgcontent │ │ │ │ ├── Knight.mgcontent │ │ │ │ ├── Peasant.mgcontent │ │ │ │ ├── Ballista.mgcontent │ │ │ │ ├── Battleship.mgcontent │ │ │ │ ├── Elven Archer.mgcontent │ │ │ │ ├── Gryphon Rider.mgcontent │ │ │ │ ├── Elven Destroyer.mgcontent │ │ │ │ └── Human Transport.mgcontent │ │ │ ├── Winter Tiles.mgcontent │ │ │ ├── Wasteland Tiles.mgcontent │ │ │ └── Magic and Missiles.mgcontent │ │ └── Windows │ │ │ ├── Font.mgcontent │ │ │ ├── Mage.mgcontent │ │ │ ├── axe.mgcontent │ │ │ ├── Grunt.mgcontent │ │ │ ├── Icons.mgcontent │ │ │ ├── arrow.mgcontent │ │ │ ├── Cursor.mgcontent │ │ │ ├── Dwarven.mgcontent │ │ │ ├── Footman.mgcontent │ │ │ ├── Knight.mgcontent │ │ │ ├── Elven Archer.mgcontent │ │ │ ├── Peasant_gold.mgcontent │ │ │ ├── Summer Tiles.mgcontent │ │ │ ├── Peasant_dying.mgcontent │ │ │ ├── Peasant_walking.mgcontent │ │ │ ├── Troll Axethrower.mgcontent │ │ │ └── Human Buildings (Summer).mgcontent │ ├── Army Colors.png │ ├── Battleship.png │ ├── Battleship.xnb │ ├── Elven Archer.png │ ├── Elven Archer.xnb │ ├── Humans │ │ ├── Mage.png │ │ ├── Footman.png │ │ ├── Knight.png │ │ ├── Peasant.png │ │ ├── Ballista.png │ │ ├── Battleship.png │ │ ├── Elven Archer.png │ │ ├── Elven Destroyer.png │ │ ├── Gryphon Rider.png │ │ ├── Human Transport.png │ │ ├── Gnomish Submarine.png │ │ ├── Human Oil Tanker.png │ │ ├── Gnomish Flying Machine.png │ │ ├── Dwarven Demolition Squad.png │ │ ├── Human Buildings (Summer).png │ │ └── Human Buildings (Winter).png │ ├── Peasant_gold.png │ ├── Peasant_gold.xnb │ ├── Peon_dying.png │ ├── Peon_dying.xnb │ ├── Peon_walking.png │ ├── Peon_walking.xnb │ ├── Summer Tiles.png │ ├── Summer Tiles.xnb │ ├── Winter Tiles.png │ ├── Peasant_dying.png │ ├── Peasant_dying.xnb │ ├── Peasant_walking.png │ ├── Peasant_walking.xnb │ ├── Troll Axethrower.png │ ├── Troll Axethrower.xnb │ ├── Wasteland Tiles.png │ ├── Magic and Missiles.png │ ├── Human Buildings (Summer).png │ ├── Human Buildings (Summer).xnb │ ├── Orc Buildings (Summer) .png │ └── Orc Buildings (Summer) .xnb ├── obj │ └── x86 │ │ └── Debug │ │ ├── Warcraft.csproj.CoreCompileInputs.cache │ │ ├── Warcraft.exe │ │ ├── Warcraft.pdb │ │ └── Warcraft.csprojResolveAssemblyReference.cache ├── Buildings │ ├── .DS_Store │ ├── Neutral │ │ ├── Farm.cs │ │ ├── CityHall.cs │ │ └── Barracks.cs │ ├── InformationBuilding.cs │ ├── Orcs │ │ ├── DarkPortal.cs │ │ ├── PigFarm.cs │ │ └── AltarOfStorms.cs │ └── Humans │ │ ├── Church.cs │ │ └── ChickenFarm.cs ├── libSDL2-2.0.0.dylib ├── libopenal.1.dylib ├── Units │ ├── Orcs │ │ ├── .DS_Store │ │ └── Actions.cs │ └── InformationUnit.cs ├── bin │ └── Debug │ │ ├── Warcraft.exe │ │ ├── Warcraft.pdb │ │ ├── x64 │ │ ├── SDL2.dll │ │ ├── soft_oal.dll │ │ ├── libopenal.so.1 │ │ └── libSDL2-2.0.so.0 │ │ ├── x86 │ │ ├── SDL2.dll │ │ ├── soft_oal.dll │ │ ├── libopenal.so.1 │ │ └── libSDL2-2.0.so.0 │ │ ├── Content │ │ ├── Font.xnb │ │ ├── Mage.xnb │ │ ├── axe.xnb │ │ ├── Cursor.xnb │ │ ├── Dwarven.xnb │ │ ├── Footman.xnb │ │ ├── Grunt.xnb │ │ ├── Icons.xnb │ │ ├── Knight.xnb │ │ ├── arrow.xnb │ │ ├── Elven Archer.xnb │ │ ├── Peasant_gold.xnb │ │ ├── Summer Tiles.xnb │ │ ├── Peasant_dying.xnb │ │ ├── Peasant_walking.xnb │ │ ├── Troll Axethrower.xnb │ │ ├── Human Buildings (Summer).xnb │ │ └── Orc Buildings (Summer) .xnb │ │ ├── libSDL2-2.0.0.dylib │ │ ├── libopenal.1.dylib │ │ ├── MonoGame.Framework.dll │ │ └── MonoGame.Framework.dll.config ├── Commands │ └── ICommand.cs ├── EA │ ├── ActionType.cs │ ├── GeneUnit.cs │ ├── GeneticUtil.cs │ ├── Gene.cs │ └── CityHallController.cs ├── Events │ ├── MouseEventArgs.cs │ └── MouseClickEventArgs.cs ├── Managers │ ├── ManagerPlayerBuildings.cs │ ├── ManagerUI.cs │ ├── ManagerBotsBuildings.cs │ └── ManagerResources.cs ├── Scenes │ └── Scene.cs ├── Map │ ├── Room.cs │ └── GenerateRooms.cs ├── MonoGame.Framework.dll.config ├── UI │ ├── Buildings │ │ ├── Church.cs │ │ └── AltarOfStorms.cs │ ├── UI.cs │ └── Button.cs ├── Properties │ └── AssemblyInfo.cs └── app.manifest ├── README.md ├── Warcraft.sln └── Warcraft.userprefs /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/.DS_Store -------------------------------------------------------------------------------- /Warcraft/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/.DS_Store -------------------------------------------------------------------------------- /Warcraft/Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Icon.ico -------------------------------------------------------------------------------- /Warcraft/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Icon.png -------------------------------------------------------------------------------- /Warcraft/Util/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Util/.DS_Store -------------------------------------------------------------------------------- /Warcraft/x64/SDL2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/x64/SDL2.dll -------------------------------------------------------------------------------- /Warcraft/x86/SDL2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/x86/SDL2.dll -------------------------------------------------------------------------------- /Warcraft/Content/Exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/Exit.png -------------------------------------------------------------------------------- /Warcraft/Content/Exit.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/Exit.xnb -------------------------------------------------------------------------------- /Warcraft/Content/Font.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/Font.xnb -------------------------------------------------------------------------------- /Warcraft/Content/Mage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/Mage.png -------------------------------------------------------------------------------- /Warcraft/Content/Mage.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/Mage.xnb -------------------------------------------------------------------------------- /Warcraft/Content/Play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/Play.png -------------------------------------------------------------------------------- /Warcraft/Content/Play.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/Play.xnb -------------------------------------------------------------------------------- /Warcraft/Content/axe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/axe.png -------------------------------------------------------------------------------- /Warcraft/Content/axe.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/axe.xnb -------------------------------------------------------------------------------- /Warcraft/obj/x86/Debug/Warcraft.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | c35b4b31c66fdfc3f8cbf8cfb8cadaaaed47729c 2 | -------------------------------------------------------------------------------- /Warcraft/x64/soft_oal.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/x64/soft_oal.dll -------------------------------------------------------------------------------- /Warcraft/x86/soft_oal.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/x86/soft_oal.dll -------------------------------------------------------------------------------- /Warcraft/Buildings/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Buildings/.DS_Store -------------------------------------------------------------------------------- /Warcraft/Content/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/.DS_Store -------------------------------------------------------------------------------- /Warcraft/Content/Corpses.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/Corpses.png -------------------------------------------------------------------------------- /Warcraft/Content/Cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/Cursor.png -------------------------------------------------------------------------------- /Warcraft/Content/Cursor.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/Cursor.xnb -------------------------------------------------------------------------------- /Warcraft/Content/Daemon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/Daemon.png -------------------------------------------------------------------------------- /Warcraft/Content/Dwarven.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/Dwarven.png -------------------------------------------------------------------------------- /Warcraft/Content/Dwarven.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/Dwarven.xnb -------------------------------------------------------------------------------- /Warcraft/Content/Footman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/Footman.png -------------------------------------------------------------------------------- /Warcraft/Content/Footman.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/Footman.xnb -------------------------------------------------------------------------------- /Warcraft/Content/Grunt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/Grunt.png -------------------------------------------------------------------------------- /Warcraft/Content/Grunt.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/Grunt.xnb -------------------------------------------------------------------------------- /Warcraft/Content/Icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/Icons.png -------------------------------------------------------------------------------- /Warcraft/Content/Icons.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/Icons.xnb -------------------------------------------------------------------------------- /Warcraft/Content/Knight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/Knight.png -------------------------------------------------------------------------------- /Warcraft/Content/Knight.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/Knight.xnb -------------------------------------------------------------------------------- /Warcraft/Content/Misc..png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/Misc..png -------------------------------------------------------------------------------- /Warcraft/Content/Risland.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/Risland.png -------------------------------------------------------------------------------- /Warcraft/Content/Risland.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/Risland.xnb -------------------------------------------------------------------------------- /Warcraft/Content/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/arrow.png -------------------------------------------------------------------------------- /Warcraft/Content/arrow.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/arrow.xnb -------------------------------------------------------------------------------- /Warcraft/Content/sidebar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/sidebar.png -------------------------------------------------------------------------------- /Warcraft/Content/sidebar.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/sidebar.xnb -------------------------------------------------------------------------------- /Warcraft/libSDL2-2.0.0.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/libSDL2-2.0.0.dylib -------------------------------------------------------------------------------- /Warcraft/libopenal.1.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/libopenal.1.dylib -------------------------------------------------------------------------------- /Warcraft/x64/libopenal.so.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/x64/libopenal.so.1 -------------------------------------------------------------------------------- /Warcraft/x86/libopenal.so.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/x86/libopenal.so.1 -------------------------------------------------------------------------------- /Warcraft/Content/Ballista.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/Ballista.png -------------------------------------------------------------------------------- /Warcraft/Content/Ballista.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/Ballista.xnb -------------------------------------------------------------------------------- /Warcraft/Content/Critters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/Critters.png -------------------------------------------------------------------------------- /Warcraft/Content/Orcs/Ogre.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/Orcs/Ogre.png -------------------------------------------------------------------------------- /Warcraft/Content/Orcs/Peon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/Orcs/Peon.png -------------------------------------------------------------------------------- /Warcraft/Content/Peon_gold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/Peon_gold.png -------------------------------------------------------------------------------- /Warcraft/Content/Peon_gold.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/Peon_gold.xnb -------------------------------------------------------------------------------- /Warcraft/Content/Skeleton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/Skeleton.png -------------------------------------------------------------------------------- /Warcraft/Content/Skeleton.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/Skeleton.xnb -------------------------------------------------------------------------------- /Warcraft/Content/bin/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/bin/.DS_Store -------------------------------------------------------------------------------- /Warcraft/Content/obj/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/obj/.DS_Store -------------------------------------------------------------------------------- /Warcraft/Units/Orcs/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Units/Orcs/.DS_Store -------------------------------------------------------------------------------- /Warcraft/x64/libSDL2-2.0.so.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/x64/libSDL2-2.0.so.0 -------------------------------------------------------------------------------- /Warcraft/x86/libSDL2-2.0.so.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/x86/libSDL2-2.0.so.0 -------------------------------------------------------------------------------- /Warcraft/Content/Army Colors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/Army Colors.png -------------------------------------------------------------------------------- /Warcraft/Content/Battleship.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/Battleship.png -------------------------------------------------------------------------------- /Warcraft/Content/Battleship.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/Battleship.xnb -------------------------------------------------------------------------------- /Warcraft/Content/Elven Archer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/Elven Archer.png -------------------------------------------------------------------------------- /Warcraft/Content/Elven Archer.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/Elven Archer.xnb -------------------------------------------------------------------------------- /Warcraft/Content/Humans/Mage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/Humans/Mage.png -------------------------------------------------------------------------------- /Warcraft/Content/Orcs/Dragon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/Orcs/Dragon.png -------------------------------------------------------------------------------- /Warcraft/Content/Orcs/Grunt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/Orcs/Grunt.png -------------------------------------------------------------------------------- /Warcraft/Content/Peasant_gold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/Peasant_gold.png -------------------------------------------------------------------------------- /Warcraft/Content/Peasant_gold.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/Peasant_gold.xnb -------------------------------------------------------------------------------- /Warcraft/Content/Peon_dying.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/Peon_dying.png -------------------------------------------------------------------------------- /Warcraft/Content/Peon_dying.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/Peon_dying.xnb -------------------------------------------------------------------------------- /Warcraft/Content/Peon_walking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/Peon_walking.png -------------------------------------------------------------------------------- /Warcraft/Content/Peon_walking.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/Peon_walking.xnb -------------------------------------------------------------------------------- /Warcraft/Content/Summer Tiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/Summer Tiles.png -------------------------------------------------------------------------------- /Warcraft/Content/Summer Tiles.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/Summer Tiles.xnb -------------------------------------------------------------------------------- /Warcraft/Content/Winter Tiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/Winter Tiles.png -------------------------------------------------------------------------------- /Warcraft/bin/Debug/Warcraft.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/bin/Debug/Warcraft.exe -------------------------------------------------------------------------------- /Warcraft/bin/Debug/Warcraft.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/bin/Debug/Warcraft.pdb -------------------------------------------------------------------------------- /Warcraft/bin/Debug/x64/SDL2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/bin/Debug/x64/SDL2.dll -------------------------------------------------------------------------------- /Warcraft/bin/Debug/x86/SDL2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/bin/Debug/x86/SDL2.dll -------------------------------------------------------------------------------- /Warcraft/Content/Humans/Footman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/Humans/Footman.png -------------------------------------------------------------------------------- /Warcraft/Content/Humans/Knight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/Humans/Knight.png -------------------------------------------------------------------------------- /Warcraft/Content/Humans/Peasant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/Humans/Peasant.png -------------------------------------------------------------------------------- /Warcraft/Content/Orcs/Catapult.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/Orcs/Catapult.png -------------------------------------------------------------------------------- /Warcraft/Content/Peasant_dying.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/Peasant_dying.png -------------------------------------------------------------------------------- /Warcraft/Content/Peasant_dying.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/Peasant_dying.xnb -------------------------------------------------------------------------------- /Warcraft/bin/Debug/Content/Font.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/bin/Debug/Content/Font.xnb -------------------------------------------------------------------------------- /Warcraft/bin/Debug/Content/Mage.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/bin/Debug/Content/Mage.xnb -------------------------------------------------------------------------------- /Warcraft/bin/Debug/Content/axe.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/bin/Debug/Content/axe.xnb -------------------------------------------------------------------------------- /Warcraft/bin/Debug/x64/soft_oal.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/bin/Debug/x64/soft_oal.dll -------------------------------------------------------------------------------- /Warcraft/bin/Debug/x86/soft_oal.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/bin/Debug/x86/soft_oal.dll -------------------------------------------------------------------------------- /Warcraft/obj/x86/Debug/Warcraft.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/obj/x86/Debug/Warcraft.exe -------------------------------------------------------------------------------- /Warcraft/obj/x86/Debug/Warcraft.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/obj/x86/Debug/Warcraft.pdb -------------------------------------------------------------------------------- /Warcraft/Content/Humans/Ballista.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/Humans/Ballista.png -------------------------------------------------------------------------------- /Warcraft/Content/Humans/Battleship.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/Humans/Battleship.png -------------------------------------------------------------------------------- /Warcraft/Content/Orcs/Death Knight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/Orcs/Death Knight.png -------------------------------------------------------------------------------- /Warcraft/Content/Orcs/Giant Turtle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/Orcs/Giant Turtle.png -------------------------------------------------------------------------------- /Warcraft/Content/Peasant_walking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/Peasant_walking.png -------------------------------------------------------------------------------- /Warcraft/Content/Peasant_walking.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/Peasant_walking.xnb -------------------------------------------------------------------------------- /Warcraft/Content/Troll Axethrower.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/Troll Axethrower.png -------------------------------------------------------------------------------- /Warcraft/Content/Troll Axethrower.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/Troll Axethrower.xnb -------------------------------------------------------------------------------- /Warcraft/Content/Wasteland Tiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/Wasteland Tiles.png -------------------------------------------------------------------------------- /Warcraft/Content/bin/DesktopGL/axe.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/bin/DesktopGL/axe.xnb -------------------------------------------------------------------------------- /Warcraft/Content/bin/Windows/Font.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/bin/Windows/Font.xnb -------------------------------------------------------------------------------- /Warcraft/Content/bin/Windows/Grunt.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/bin/Windows/Grunt.xnb -------------------------------------------------------------------------------- /Warcraft/Content/bin/Windows/Icons.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/bin/Windows/Icons.xnb -------------------------------------------------------------------------------- /Warcraft/Content/bin/Windows/Mage.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/bin/Windows/Mage.xnb -------------------------------------------------------------------------------- /Warcraft/Content/bin/Windows/arrow.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/bin/Windows/arrow.xnb -------------------------------------------------------------------------------- /Warcraft/Content/bin/Windows/axe.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/bin/Windows/axe.xnb -------------------------------------------------------------------------------- /Warcraft/bin/Debug/Content/Cursor.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/bin/Debug/Content/Cursor.xnb -------------------------------------------------------------------------------- /Warcraft/bin/Debug/Content/Dwarven.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/bin/Debug/Content/Dwarven.xnb -------------------------------------------------------------------------------- /Warcraft/bin/Debug/Content/Footman.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/bin/Debug/Content/Footman.xnb -------------------------------------------------------------------------------- /Warcraft/bin/Debug/Content/Grunt.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/bin/Debug/Content/Grunt.xnb -------------------------------------------------------------------------------- /Warcraft/bin/Debug/Content/Icons.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/bin/Debug/Content/Icons.xnb -------------------------------------------------------------------------------- /Warcraft/bin/Debug/Content/Knight.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/bin/Debug/Content/Knight.xnb -------------------------------------------------------------------------------- /Warcraft/bin/Debug/Content/arrow.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/bin/Debug/Content/arrow.xnb -------------------------------------------------------------------------------- /Warcraft/bin/Debug/libSDL2-2.0.0.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/bin/Debug/libSDL2-2.0.0.dylib -------------------------------------------------------------------------------- /Warcraft/bin/Debug/libopenal.1.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/bin/Debug/libopenal.1.dylib -------------------------------------------------------------------------------- /Warcraft/bin/Debug/x64/libopenal.so.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/bin/Debug/x64/libopenal.so.1 -------------------------------------------------------------------------------- /Warcraft/bin/Debug/x86/libopenal.so.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/bin/Debug/x86/libopenal.so.1 -------------------------------------------------------------------------------- /Warcraft/Content/Humans/Elven Archer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/Humans/Elven Archer.png -------------------------------------------------------------------------------- /Warcraft/Content/Magic and Missiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/Magic and Missiles.png -------------------------------------------------------------------------------- /Warcraft/Content/Orcs/Goblin Sappers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/Orcs/Goblin Sappers.png -------------------------------------------------------------------------------- /Warcraft/Content/Orcs/Orc Oil Tanker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/Orcs/Orc Oil Tanker.png -------------------------------------------------------------------------------- /Warcraft/Content/Orcs/Orc Transport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/Orcs/Orc Transport.png -------------------------------------------------------------------------------- /Warcraft/Content/bin/DesktopGL/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/bin/DesktopGL/.DS_Store -------------------------------------------------------------------------------- /Warcraft/Content/bin/DesktopGL/Font.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/bin/DesktopGL/Font.xnb -------------------------------------------------------------------------------- /Warcraft/Content/bin/DesktopGL/Grunt.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/bin/DesktopGL/Grunt.xnb -------------------------------------------------------------------------------- /Warcraft/Content/bin/DesktopGL/Icons.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/bin/DesktopGL/Icons.xnb -------------------------------------------------------------------------------- /Warcraft/Content/bin/DesktopGL/Mage.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/bin/DesktopGL/Mage.xnb -------------------------------------------------------------------------------- /Warcraft/Content/bin/DesktopGL/Misc..xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/bin/DesktopGL/Misc..xnb -------------------------------------------------------------------------------- /Warcraft/Content/bin/DesktopGL/arrow.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/bin/DesktopGL/arrow.xnb -------------------------------------------------------------------------------- /Warcraft/Content/bin/Windows/Cursor.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/bin/Windows/Cursor.xnb -------------------------------------------------------------------------------- /Warcraft/Content/bin/Windows/Dwarven.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/bin/Windows/Dwarven.xnb -------------------------------------------------------------------------------- /Warcraft/Content/bin/Windows/Footman.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/bin/Windows/Footman.xnb -------------------------------------------------------------------------------- /Warcraft/Content/bin/Windows/Knight.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/bin/Windows/Knight.xnb -------------------------------------------------------------------------------- /Warcraft/Content/obj/DesktopGL/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/obj/DesktopGL/.DS_Store -------------------------------------------------------------------------------- /Warcraft/bin/Debug/x64/libSDL2-2.0.so.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/bin/Debug/x64/libSDL2-2.0.so.0 -------------------------------------------------------------------------------- /Warcraft/bin/Debug/x86/libSDL2-2.0.so.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/bin/Debug/x86/libSDL2-2.0.so.0 -------------------------------------------------------------------------------- /Warcraft/Content/Humans/Elven Destroyer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/Humans/Elven Destroyer.png -------------------------------------------------------------------------------- /Warcraft/Content/Humans/Gryphon Rider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/Humans/Gryphon Rider.png -------------------------------------------------------------------------------- /Warcraft/Content/Humans/Human Transport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/Humans/Human Transport.png -------------------------------------------------------------------------------- /Warcraft/Content/Orcs/Goblin Zeppelin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/Orcs/Goblin Zeppelin.png -------------------------------------------------------------------------------- /Warcraft/Content/Orcs/Ogre Juggernaut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/Orcs/Ogre Juggernaut.png -------------------------------------------------------------------------------- /Warcraft/Content/Orcs/Troll Axethrower.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/Orcs/Troll Axethrower.png -------------------------------------------------------------------------------- /Warcraft/Content/Orcs/Troll Destroyer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/Orcs/Troll Destroyer.png -------------------------------------------------------------------------------- /Warcraft/Content/bin/DesktopGL/Corpses.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/bin/DesktopGL/Corpses.xnb -------------------------------------------------------------------------------- /Warcraft/Content/bin/DesktopGL/Critters.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/bin/DesktopGL/Critters.xnb -------------------------------------------------------------------------------- /Warcraft/Content/bin/DesktopGL/Cursor.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/bin/DesktopGL/Cursor.xnb -------------------------------------------------------------------------------- /Warcraft/Content/bin/DesktopGL/Daemon.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/bin/DesktopGL/Daemon.xnb -------------------------------------------------------------------------------- /Warcraft/Content/bin/DesktopGL/Dwarven.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/bin/DesktopGL/Dwarven.xnb -------------------------------------------------------------------------------- /Warcraft/Content/bin/DesktopGL/Footman.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/bin/DesktopGL/Footman.xnb -------------------------------------------------------------------------------- /Warcraft/Content/bin/DesktopGL/Knight.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/bin/DesktopGL/Knight.xnb -------------------------------------------------------------------------------- /Warcraft/Content/bin/DesktopGL/Skeleton.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/bin/DesktopGL/Skeleton.xnb -------------------------------------------------------------------------------- /Warcraft/bin/Debug/Content/Elven Archer.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/bin/Debug/Content/Elven Archer.xnb -------------------------------------------------------------------------------- /Warcraft/bin/Debug/Content/Peasant_gold.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/bin/Debug/Content/Peasant_gold.xnb -------------------------------------------------------------------------------- /Warcraft/bin/Debug/Content/Summer Tiles.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/bin/Debug/Content/Summer Tiles.xnb -------------------------------------------------------------------------------- /Warcraft/bin/Debug/MonoGame.Framework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/bin/Debug/MonoGame.Framework.dll -------------------------------------------------------------------------------- /Warcraft/Commands/ICommand.cs: -------------------------------------------------------------------------------- 1 | namespace Warcraft.Commands 2 | { 3 | interface ICommand 4 | { 5 | bool execute(); 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /Warcraft/Content/Human Buildings (Summer).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/Human Buildings (Summer).png -------------------------------------------------------------------------------- /Warcraft/Content/Human Buildings (Summer).xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/Human Buildings (Summer).xnb -------------------------------------------------------------------------------- /Warcraft/Content/Humans/Gnomish Submarine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/Humans/Gnomish Submarine.png -------------------------------------------------------------------------------- /Warcraft/Content/Humans/Human Oil Tanker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/Humans/Human Oil Tanker.png -------------------------------------------------------------------------------- /Warcraft/Content/Orc Buildings (Summer) .png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/Orc Buildings (Summer) .png -------------------------------------------------------------------------------- /Warcraft/Content/Orc Buildings (Summer) .xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/Orc Buildings (Summer) .xnb -------------------------------------------------------------------------------- /Warcraft/Content/bin/DesktopGL/Orcs/Grunt.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/bin/DesktopGL/Orcs/Grunt.xnb -------------------------------------------------------------------------------- /Warcraft/Content/bin/DesktopGL/Orcs/Ogre.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/bin/DesktopGL/Orcs/Ogre.xnb -------------------------------------------------------------------------------- /Warcraft/Content/bin/DesktopGL/Orcs/Peon.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/bin/DesktopGL/Orcs/Peon.xnb -------------------------------------------------------------------------------- /Warcraft/Content/bin/DesktopGL/Peon_dying.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/bin/DesktopGL/Peon_dying.xnb -------------------------------------------------------------------------------- /Warcraft/Content/bin/DesktopGL/Peon_gold.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/bin/DesktopGL/Peon_gold.xnb -------------------------------------------------------------------------------- /Warcraft/Content/bin/Windows/Elven Archer.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/bin/Windows/Elven Archer.xnb -------------------------------------------------------------------------------- /Warcraft/Content/bin/Windows/Peasant_gold.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/bin/Windows/Peasant_gold.xnb -------------------------------------------------------------------------------- /Warcraft/Content/bin/Windows/Summer Tiles.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/bin/Windows/Summer Tiles.xnb -------------------------------------------------------------------------------- /Warcraft/bin/Debug/Content/Peasant_dying.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/bin/Debug/Content/Peasant_dying.xnb -------------------------------------------------------------------------------- /Warcraft/Content/Orcs/Orc Buildings (Summer).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/Orcs/Orc Buildings (Summer).png -------------------------------------------------------------------------------- /Warcraft/Content/Orcs/Orc Buildings (Winter).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/Orcs/Orc Buildings (Winter).png -------------------------------------------------------------------------------- /Warcraft/Content/bin/DesktopGL/Army Colors.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/bin/DesktopGL/Army Colors.xnb -------------------------------------------------------------------------------- /Warcraft/Content/bin/DesktopGL/Elven Archer.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/bin/DesktopGL/Elven Archer.xnb -------------------------------------------------------------------------------- /Warcraft/Content/bin/DesktopGL/Humans/Knight.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/bin/DesktopGL/Humans/Knight.xnb -------------------------------------------------------------------------------- /Warcraft/Content/bin/DesktopGL/Humans/Mage.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/bin/DesktopGL/Humans/Mage.xnb -------------------------------------------------------------------------------- /Warcraft/Content/bin/DesktopGL/Orcs/Catapult.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/bin/DesktopGL/Orcs/Catapult.xnb -------------------------------------------------------------------------------- /Warcraft/Content/bin/DesktopGL/Orcs/Dragon.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/bin/DesktopGL/Orcs/Dragon.xnb -------------------------------------------------------------------------------- /Warcraft/Content/bin/DesktopGL/Peasant_dying.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/bin/DesktopGL/Peasant_dying.xnb -------------------------------------------------------------------------------- /Warcraft/Content/bin/DesktopGL/Peasant_gold.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/bin/DesktopGL/Peasant_gold.xnb -------------------------------------------------------------------------------- /Warcraft/Content/bin/DesktopGL/Peon_walking.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/bin/DesktopGL/Peon_walking.xnb -------------------------------------------------------------------------------- /Warcraft/Content/bin/DesktopGL/Summer Tiles.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/bin/DesktopGL/Summer Tiles.xnb -------------------------------------------------------------------------------- /Warcraft/Content/bin/DesktopGL/Winter Tiles.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/bin/DesktopGL/Winter Tiles.xnb -------------------------------------------------------------------------------- /Warcraft/Content/bin/Windows/Peasant_dying.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/bin/Windows/Peasant_dying.xnb -------------------------------------------------------------------------------- /Warcraft/Content/bin/Windows/Peasant_walking.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/bin/Windows/Peasant_walking.xnb -------------------------------------------------------------------------------- /Warcraft/bin/Debug/Content/Peasant_walking.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/bin/Debug/Content/Peasant_walking.xnb -------------------------------------------------------------------------------- /Warcraft/bin/Debug/Content/Troll Axethrower.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/bin/Debug/Content/Troll Axethrower.xnb -------------------------------------------------------------------------------- /Warcraft/Content/Humans/Gnomish Flying Machine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/Humans/Gnomish Flying Machine.png -------------------------------------------------------------------------------- /Warcraft/Content/bin/DesktopGL/Humans/Ballista.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/bin/DesktopGL/Humans/Ballista.xnb -------------------------------------------------------------------------------- /Warcraft/Content/bin/DesktopGL/Humans/Footman.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/bin/DesktopGL/Humans/Footman.xnb -------------------------------------------------------------------------------- /Warcraft/Content/bin/DesktopGL/Humans/Peasant.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/bin/DesktopGL/Humans/Peasant.xnb -------------------------------------------------------------------------------- /Warcraft/Content/bin/DesktopGL/Peasant_walking.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/bin/DesktopGL/Peasant_walking.xnb -------------------------------------------------------------------------------- /Warcraft/Content/bin/DesktopGL/Wasteland Tiles.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/bin/DesktopGL/Wasteland Tiles.xnb -------------------------------------------------------------------------------- /Warcraft/Content/bin/Windows/Troll Axethrower.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/bin/Windows/Troll Axethrower.xnb -------------------------------------------------------------------------------- /Warcraft/Content/Humans/Dwarven Demolition Squad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/Humans/Dwarven Demolition Squad.png -------------------------------------------------------------------------------- /Warcraft/Content/Humans/Human Buildings (Summer).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/Humans/Human Buildings (Summer).png -------------------------------------------------------------------------------- /Warcraft/Content/Humans/Human Buildings (Winter).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/Humans/Human Buildings (Winter).png -------------------------------------------------------------------------------- /Warcraft/Content/bin/DesktopGL/Humans/Battleship.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/bin/DesktopGL/Humans/Battleship.xnb -------------------------------------------------------------------------------- /Warcraft/Content/bin/DesktopGL/Magic and Missiles.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/bin/DesktopGL/Magic and Missiles.xnb -------------------------------------------------------------------------------- /Warcraft/Content/bin/DesktopGL/Orcs/Death Knight.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/bin/DesktopGL/Orcs/Death Knight.xnb -------------------------------------------------------------------------------- /Warcraft/Content/bin/DesktopGL/Orcs/Giant Turtle.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/bin/DesktopGL/Orcs/Giant Turtle.xnb -------------------------------------------------------------------------------- /Warcraft/Content/bin/DesktopGL/Orcs/Orc Transport.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/bin/DesktopGL/Orcs/Orc Transport.xnb -------------------------------------------------------------------------------- /Warcraft/Content/bin/DesktopGL/Troll Axethrower.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/bin/DesktopGL/Troll Axethrower.xnb -------------------------------------------------------------------------------- /Warcraft/Content/bin/DesktopGL/Humans/Elven Archer.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/bin/DesktopGL/Humans/Elven Archer.xnb -------------------------------------------------------------------------------- /Warcraft/Content/bin/DesktopGL/Humans/Gryphon Rider.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/bin/DesktopGL/Humans/Gryphon Rider.xnb -------------------------------------------------------------------------------- /Warcraft/Content/bin/DesktopGL/Orcs/Goblin Sappers.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/bin/DesktopGL/Orcs/Goblin Sappers.xnb -------------------------------------------------------------------------------- /Warcraft/Content/bin/DesktopGL/Orcs/Goblin Zeppelin.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/bin/DesktopGL/Orcs/Goblin Zeppelin.xnb -------------------------------------------------------------------------------- /Warcraft/Content/bin/DesktopGL/Orcs/Ogre Juggernaut.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/bin/DesktopGL/Orcs/Ogre Juggernaut.xnb -------------------------------------------------------------------------------- /Warcraft/Content/bin/DesktopGL/Orcs/Orc Oil Tanker.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/bin/DesktopGL/Orcs/Orc Oil Tanker.xnb -------------------------------------------------------------------------------- /Warcraft/Content/bin/DesktopGL/Orcs/Troll Destroyer.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/bin/DesktopGL/Orcs/Troll Destroyer.xnb -------------------------------------------------------------------------------- /Warcraft/bin/Debug/Content/Human Buildings (Summer).xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/bin/Debug/Content/Human Buildings (Summer).xnb -------------------------------------------------------------------------------- /Warcraft/bin/Debug/Content/Orc Buildings (Summer) .xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/bin/Debug/Content/Orc Buildings (Summer) .xnb -------------------------------------------------------------------------------- /Warcraft/Content/bin/DesktopGL/Humans/Elven Destroyer.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/bin/DesktopGL/Humans/Elven Destroyer.xnb -------------------------------------------------------------------------------- /Warcraft/Content/bin/DesktopGL/Humans/Human Oil Tanker.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/bin/DesktopGL/Humans/Human Oil Tanker.xnb -------------------------------------------------------------------------------- /Warcraft/Content/bin/DesktopGL/Humans/Human Transport.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/bin/DesktopGL/Humans/Human Transport.xnb -------------------------------------------------------------------------------- /Warcraft/Content/bin/DesktopGL/Orc Buildings (Summer) .xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/bin/DesktopGL/Orc Buildings (Summer) .xnb -------------------------------------------------------------------------------- /Warcraft/Content/bin/DesktopGL/Orcs/Troll Axethrower.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/bin/DesktopGL/Orcs/Troll Axethrower.xnb -------------------------------------------------------------------------------- /Warcraft/Content/bin/Windows/Human Buildings (Summer).xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/bin/Windows/Human Buildings (Summer).xnb -------------------------------------------------------------------------------- /Warcraft/Content/bin/DesktopGL/Human Buildings (Summer).xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/bin/DesktopGL/Human Buildings (Summer).xnb -------------------------------------------------------------------------------- /Warcraft/Content/bin/DesktopGL/Humans/Gnomish Submarine.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/bin/DesktopGL/Humans/Gnomish Submarine.xnb -------------------------------------------------------------------------------- /Warcraft/Content/bin/DesktopGL/Orcs/Orc Buildings (Summer).xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/bin/DesktopGL/Orcs/Orc Buildings (Summer).xnb -------------------------------------------------------------------------------- /Warcraft/Content/bin/DesktopGL/Orcs/Orc Buildings (Winter).xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/bin/DesktopGL/Orcs/Orc Buildings (Winter).xnb -------------------------------------------------------------------------------- /Warcraft/Content/bin/DesktopGL/Humans/Gnomish Flying Machine.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/bin/DesktopGL/Humans/Gnomish Flying Machine.xnb -------------------------------------------------------------------------------- /Warcraft/Content/bin/DesktopGL/Humans/Dwarven Demolition Squad.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/bin/DesktopGL/Humans/Dwarven Demolition Squad.xnb -------------------------------------------------------------------------------- /Warcraft/Content/bin/DesktopGL/Humans/Human Buildings (Summer).xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/bin/DesktopGL/Humans/Human Buildings (Summer).xnb -------------------------------------------------------------------------------- /Warcraft/Content/bin/DesktopGL/Humans/Human Buildings (Winter).xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/Content/bin/DesktopGL/Humans/Human Buildings (Winter).xnb -------------------------------------------------------------------------------- /Warcraft/obj/x86/Debug/Warcraft.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulomenezes/warcraft/HEAD/Warcraft/obj/x86/Debug/Warcraft.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /Warcraft/Units/Orcs/Actions.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | namespace Warcraft.Units.Orcs 3 | { 4 | public class Actions 5 | { 6 | public Actions() 7 | { 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /Warcraft/EA/ActionType.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | namespace Warcraft.EA 3 | { 4 | enum ActionType 5 | { 6 | BUILDING, 7 | MINING, 8 | TOWN_HALL, 9 | BARRACKS 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /Warcraft/EA/GeneUnit.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | namespace Warcraft.EA 3 | { 4 | class GeneUnit : Gene 5 | { 6 | public Util.Buildings building; 7 | 8 | public GeneUnit(Util.Buildings building, int action) 9 | : base(action) 10 | { 11 | this.building = building; 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Warcraft 2 Remake 2 | 3 | Warcraft 2 clone development at UFRPE. 4 | A* for pathfinding. 5 | 6 | ![Warcraft 2](http://i.imgur.com/84mhpZk.png) 7 | ![Warcraft 2](http://i.imgur.com/AfG7RGF.png) 8 | ![Warcraft 2](http://i.imgur.com/Ooot1iT.png) 9 | ![Warcraft 2](http://i.imgur.com/WkJNa8n.png) 10 | ![Warcraft 2](http://i.imgur.com/cdlyKpy.png) 11 | -------------------------------------------------------------------------------- /Warcraft/Util/Units.cs: -------------------------------------------------------------------------------- 1 | namespace Warcraft.Util 2 | { 3 | enum Units 4 | { 5 | PEASANT, 6 | FOOTMAN, 7 | ELVEN_ARCHER, 8 | NONE, 9 | GRUNT, 10 | TROLL_AXETHROWER, 11 | PEON, 12 | SKELETON, 13 | BALLISTA, 14 | KNIGHT, 15 | BATTLESHIP, 16 | DAEMON 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /Warcraft/Util/Buildings.cs: -------------------------------------------------------------------------------- 1 | namespace Warcraft.Util 2 | { 3 | enum Buildings 4 | { 5 | TOWN_HALL, 6 | BARRACKS, 7 | CHICKEN_FARM, 8 | GOLD_MINE, 9 | NONE, 10 | GREAT_HALL, 11 | PIG_FARM, 12 | ORC_BARRACKS, 13 | DARK_PORTAL, 14 | CHURCH, 15 | ALTAR_OF_STORMS 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /Warcraft/Util/Sprite.cs: -------------------------------------------------------------------------------- 1 | namespace Warcraft.Util 2 | { 3 | struct Sprite 4 | { 5 | public int x; 6 | public int y; 7 | public int width; 8 | public int height; 9 | 10 | public Sprite(int x, int y, int width, int height) 11 | { 12 | this.x = x; 13 | this.y = y; 14 | this.width = width; 15 | this.height = height; 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /Warcraft/Events/MouseEventArgs.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Xna.Framework; 2 | using System; 3 | 4 | namespace Warcraft.Events 5 | { 6 | class MouseEventArgs : EventArgs 7 | { 8 | public Rectangle SelectRectangle; 9 | public bool UI; 10 | 11 | public MouseEventArgs(bool ui, Rectangle selectRectangle) 12 | { 13 | UI = ui; 14 | SelectRectangle = selectRectangle; 15 | } 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /Warcraft/Managers/ManagerPlayerBuildings.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using Warcraft.Buildings; 4 | using Warcraft.Buildings.Neutral; 5 | 6 | namespace Warcraft.Managers 7 | { 8 | class ManagerPlayerBuildings : ManagerBuildings 9 | { 10 | public ManagerPlayerBuildings(ManagerMouse managerMouse, ManagerMap managerMap) 11 | : base(managerMouse, managerMap) 12 | { 13 | 14 | } 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /Warcraft/Util/Base.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using Microsoft.Xna.Framework; 3 | 4 | namespace Warcraft.Util 5 | { 6 | abstract class Base 7 | { 8 | public Animation animations; 9 | 10 | public Vector2 position; 11 | public Vector2 Position 12 | { 13 | get; set; 14 | } 15 | 16 | 17 | public Information information; 18 | public static Information Information; 19 | 20 | public Base() 21 | { 22 | } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /Warcraft/Buildings/Neutral/Farm.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using Warcraft.Managers; 3 | 4 | namespace Warcraft.Buildings.Neutral 5 | { 6 | class Farm : Building 7 | { 8 | public Farm(int tileX, int tileY, int width, int height, ManagerMouse managerMouse, ManagerMap managerMap, ManagerUnits managerUnits) 9 | : base(tileX, tileY, width, height, managerMouse, managerMap, managerUnits) 10 | { 11 | ui = new UI.Buildings.Farm(managerMouse, this); 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /Warcraft/Events/MouseClickEventArgs.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Xna.Framework; 2 | using System; 3 | 4 | namespace Warcraft.Events 5 | { 6 | class MouseClickEventArgs : EventArgs 7 | { 8 | public Vector2 Position; 9 | 10 | public int XTile { get { return (int)Position.X / 32; } } 11 | public int YTile { get { return (int)Position.Y / 32; } } 12 | 13 | public MouseClickEventArgs(Vector2 position) 14 | { 15 | Position = position; 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /Warcraft/Scenes/Scene.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using Microsoft.Xna.Framework.Content; 3 | using Microsoft.Xna.Framework.Graphics; 4 | 5 | namespace Warcraft.Scenes 6 | { 7 | abstract class Scene 8 | { 9 | public Scene() 10 | { 11 | } 12 | 13 | public abstract void Initializer(); 14 | 15 | public abstract void LoadContent(ContentManager Content); 16 | 17 | public abstract void Update(); 18 | 19 | public abstract void Draw(SpriteBatch spriteBatch); 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /Warcraft/EA/GeneticUtil.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | namespace Warcraft.EA 3 | { 4 | class GeneticUtil 5 | { 6 | public static String IntToBinary(int value) 7 | { 8 | return Convert.ToString(value, 2); 9 | } 10 | 11 | public static String IntToBinary(int value, int size) 12 | { 13 | return Convert.ToString(value, 2).PadLeft(size, '0'); // 0011 14 | } 15 | 16 | public static int BinaryToInt(string value) 17 | { 18 | return Convert.ToInt32(value, 2); 19 | } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /Warcraft/Map/Room.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using Microsoft.Xna.Framework; 3 | using Microsoft.Xna.Framework.Graphics; 4 | using Warcraft.UI; 5 | 6 | namespace Warcraft.Map 7 | { 8 | public class Room 9 | { 10 | public Rectangle rectangle; 11 | 12 | public Room(int x, int y, int w, int h) 13 | { 14 | this.rectangle = new Rectangle(x, y, w, h); 15 | } 16 | 17 | public void Draw(SpriteBatch spriteBatch) 18 | { 19 | SelectRectangle.DrawFilled(spriteBatch, rectangle); 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /Warcraft/Util/PathNode.cs: -------------------------------------------------------------------------------- 1 | namespace Warcraft.Util 2 | { 3 | class PathNode 4 | { 5 | public int x; 6 | public int y; 7 | 8 | public int F; 9 | public int G; 10 | public int H; 11 | 12 | public PathNode parent; 13 | 14 | public PathNode(int x, int y, int g, int h, PathNode parent) 15 | { 16 | this.x = x; 17 | this.y = y; 18 | 19 | this.F = g + h; 20 | this.G = g; 21 | this.H = h; 22 | 23 | this.parent = parent; 24 | } 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /Warcraft/MonoGame.Framework.dll.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /Warcraft/bin/Debug/MonoGame.Framework.dll.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /Warcraft/Util/Information.cs: -------------------------------------------------------------------------------- 1 | namespace Warcraft.Util 2 | { 3 | enum Race 4 | { 5 | NEUTRAL, 6 | HUMAN, 7 | ORC, 8 | HIGH_ELF, 9 | FOREST_TROLL 10 | } 11 | 12 | enum Faction 13 | { 14 | NEUTRAL, 15 | ALLIANCE, 16 | HORDE 17 | } 18 | 19 | class Information 20 | { 21 | public string Name; 22 | 23 | public float HitPoints; 24 | public float HitPointsTotal; 25 | 26 | public int CostGold; 27 | public int CostFood; 28 | public int CostWood; 29 | public int BuildTime; 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /Warcraft/EA/Gene.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | namespace Warcraft.EA 3 | { 4 | class Gene 5 | { 6 | public String[] peasantTownhall, peasantBarracks, peasantFarms, peasantMiner; 7 | public String[] townHall; 8 | public String[] barracksWarriors, barracksArchers; 9 | 10 | public float fitness; 11 | 12 | public Gene(String[][] genes) 13 | { 14 | peasantTownhall = genes[0]; 15 | peasantBarracks = genes[1]; 16 | peasantFarms = genes[2]; 17 | peasantMiner = genes[3]; 18 | 19 | townHall = genes[4]; 20 | barracksWarriors = genes[5]; 21 | barracksArchers = genes[6]; 22 | } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /Warcraft/Buildings/InformationBuilding.cs: -------------------------------------------------------------------------------- 1 | using Warcraft.Util; 2 | 3 | namespace Warcraft.Buildings 4 | { 5 | class InformationBuilding : Information 6 | { 7 | public Util.Buildings Type; 8 | public Util.Units Creates; 9 | 10 | public InformationBuilding(string name, int hitPoints, int costGold, int costFood, Util.Units creates, int buildTime, Util.Buildings type) 11 | { 12 | Name = name; 13 | 14 | HitPoints = hitPoints; 15 | HitPointsTotal = hitPoints; 16 | 17 | CostGold = costGold; 18 | CostFood = costFood; 19 | Creates = creates; 20 | BuildTime = buildTime; 21 | 22 | Type = type; 23 | } 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /Warcraft.sln: -------------------------------------------------------------------------------- 1 | 2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio 2012 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Warcraft", "Warcraft\Warcraft.csproj", "{13F82A3A-108E-4ECC-80BB-B2E7274ECB9C}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|x86 = Debug|x86 9 | Release|x86 = Release|x86 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {13F82A3A-108E-4ECC-80BB-B2E7274ECB9C}.Debug|x86.ActiveCfg = Debug|x86 13 | {13F82A3A-108E-4ECC-80BB-B2E7274ECB9C}.Debug|x86.Build.0 = Debug|x86 14 | {13F82A3A-108E-4ECC-80BB-B2E7274ECB9C}.Release|x86.ActiveCfg = Release|x86 15 | {13F82A3A-108E-4ECC-80BB-B2E7274ECB9C}.Release|x86.Build.0 = Release|x86 16 | EndGlobalSection 17 | EndGlobal 18 | -------------------------------------------------------------------------------- /Warcraft/UI/Buildings/Church.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Xna.Framework; 2 | using Microsoft.Xna.Framework.Content; 3 | using Microsoft.Xna.Framework.Graphics; 4 | 5 | namespace Warcraft.UI.Buildings 6 | { 7 | class Church : UI 8 | { 9 | private global::Warcraft.Buildings.Humans.Church church; 10 | 11 | public Church(global::Warcraft.Buildings.Humans.Church church) 12 | { 13 | buttonPortrait = new Button(2, 6); 14 | 15 | this.church = church; 16 | } 17 | 18 | public override void LoadContent(ContentManager content) 19 | { 20 | base.LoadContent(content); 21 | buttonPortrait.LoadContent(content); 22 | } 23 | 24 | public override void Draw(SpriteBatch spriteBatch) 25 | { 26 | if (DrawIndividual) 27 | { 28 | buttonPortrait.Draw(spriteBatch); 29 | 30 | spriteBatch.DrawString(font, church.information.Name, new Vector2(minX + 50, 100), Color.Black); 31 | } 32 | } 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /Warcraft/UI/Buildings/AltarOfStorms.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using Microsoft.Xna.Framework; 3 | using Microsoft.Xna.Framework.Content; 4 | using Microsoft.Xna.Framework.Graphics; 5 | 6 | namespace Warcraft.UI.Buildings 7 | { 8 | class AltarOfStorms : UI 9 | { 10 | private global::Warcraft.Buildings.Orcs.AltarOfStorms church; 11 | 12 | public AltarOfStorms(global::Warcraft.Buildings.Orcs.AltarOfStorms church) 13 | { 14 | buttonPortrait = new Button(2, 7); 15 | 16 | this.church = church; 17 | } 18 | 19 | public override void LoadContent(ContentManager content) 20 | { 21 | base.LoadContent(content); 22 | buttonPortrait.LoadContent(content); 23 | } 24 | 25 | public override void Draw(SpriteBatch spriteBatch) 26 | { 27 | if (DrawIndividual) 28 | { 29 | buttonPortrait.Draw(spriteBatch); 30 | 31 | spriteBatch.DrawString(font, church.information.Name, new Vector2(minX + 50, 100), Color.Black); 32 | } 33 | } 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /Warcraft/Content/obj/Windows/Font.mgcontent: -------------------------------------------------------------------------------- 1 | 2 | 3 | /Users/paulomenezes/Documents/repositories/warcraft-monogame/Warcraft/Content/Font.spritefont 4 | 2017-05-07T18:47:23-03:00 5 | /Users/paulomenezes/Documents/repositories/warcraft-monogame/Warcraft/Content/bin/Windows/Font.xnb 6 | 2017-05-13T18:41:44-03:00 7 | FontDescriptionImporter 8 | 2017-03-01T12:06:24-03:00 9 | FontDescriptionProcessor 10 | 2017-03-01T12:06:24-03:00 11 | 12 | TextureFormat 13 | Compressed 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /Warcraft/UI/UI.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Xna.Framework.Content; 2 | using Microsoft.Xna.Framework.Graphics; 3 | 4 | namespace Warcraft.UI 5 | { 6 | class UI 7 | { 8 | public static SpriteFont font; 9 | public static Texture2D portraits; 10 | protected int minX = Warcraft.WINDOWS_WIDTH + 30; 11 | 12 | public Button buttonPortrait; 13 | 14 | public static bool DrawIndividual = true; 15 | 16 | public UI() 17 | { 18 | 19 | } 20 | 21 | public virtual void LoadContent(ContentManager content) 22 | { 23 | if (portraits == null || font == null) 24 | { 25 | font = content.Load("Font"); 26 | portraits = content.Load("Icons"); 27 | } 28 | } 29 | 30 | public virtual void Update() 31 | { 32 | 33 | } 34 | 35 | public virtual void Draw(SpriteBatch spriteBatch) 36 | { 37 | 38 | } 39 | } 40 | } 41 | -------------------------------------------------------------------------------- /Warcraft/Content/obj/DesktopGL/Font.mgcontent: -------------------------------------------------------------------------------- 1 | 2 | 3 | /Users/paulomenezes/Documents/repositories/warcraft/Warcraft/Content/Font.spritefont 4 | 2017-05-07T18:47:23-03:00 5 | /Users/paulomenezes/Documents/repositories/warcraft/Warcraft/Content/bin/DesktopGL/Font.xnb 6 | 2017-08-23T17:47:30-03:00 7 | FontDescriptionImporter 8 | 2017-03-01T12:06:24-03:00 9 | FontDescriptionProcessor 10 | 2017-03-01T12:06:24-03:00 11 | 12 | PremultiplyAlpha 13 | True 14 | 15 | 16 | TextureFormat 17 | Compressed 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /Warcraft/Managers/ManagerUI.cs: -------------------------------------------------------------------------------- 1 | using System.Collections.Generic; 2 | using Microsoft.Xna.Framework.Content; 3 | using Microsoft.Xna.Framework.Graphics; 4 | using Warcraft.UI; 5 | 6 | namespace Warcraft.Managers 7 | { 8 | class ManagerUI 9 | { 10 | UI.UI ui; 11 | 12 | public ManagerUI(ManagerMouse managerMouse, ManagerBuildings managerBuildings, ManagerUnits managerUnits, List managerEnemies) 13 | { 14 | ui = new Main(managerUnits, managerBuildings, managerMouse, managerEnemies); 15 | } 16 | 17 | public void LoadContent(ContentManager content) 18 | { 19 | ui.LoadContent(content); 20 | } 21 | 22 | public void Update() 23 | { 24 | ui.Update(); 25 | } 26 | 27 | public void DrawBack(SpriteBatch spriteBatch) 28 | { 29 | (ui as Main).DrawBack(spriteBatch); 30 | } 31 | 32 | public void Draw(SpriteBatch spriteBatch) 33 | { 34 | ui.Draw(spriteBatch); 35 | } 36 | } 37 | } 38 | -------------------------------------------------------------------------------- /Warcraft/Buildings/Neutral/CityHall.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using Microsoft.Xna.Framework; 3 | using Warcraft.Commands; 4 | using Warcraft.Managers; 5 | 6 | namespace Warcraft.Buildings.Neutral 7 | { 8 | class CityHall : Building 9 | { 10 | public CityHall(int tileX, int tileY, ManagerMouse managerMouse, ManagerMap managerMap, ManagerUnits managerUnits) : 11 | base(tileX, tileY, 128, 128, managerMouse, managerMap, managerUnits) 12 | { 13 | ui = new UI.Buildings.CityHall(managerMouse, this); 14 | } 15 | 16 | public override void Update() 17 | { 18 | base.Update(); 19 | 20 | for (int i = 0; i < commands.Count; i++) 21 | { 22 | var c = (commands[i] as BuilderUnits); 23 | c.Update(); 24 | 25 | if (c.completed) 26 | { 27 | var p = new Point(((int)Position.X / 32) + ((width / Warcraft.TILE_SIZE) / 2), ((int)Position.Y / 32) + ((height / Warcraft.TILE_SIZE))); 28 | managerUnits.Factory(c.type, p.X, p.Y, unitDestination.X, unitDestination.Y); 29 | c.completed = false; 30 | c.remove = true; 31 | } 32 | } 33 | } 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /Warcraft/Managers/ManagerBotsBuildings.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using Microsoft.Xna.Framework; 4 | using Warcraft.Buildings; 5 | using Warcraft.Buildings.Neutral; 6 | using Warcraft.Buildings.Orcs; 7 | using Warcraft.Map; 8 | using Warcraft.Util; 9 | 10 | namespace Warcraft.Managers 11 | { 12 | class ManagerBotsBuildings : ManagerBuildings 13 | { 14 | public ManagerBotsBuildings(ManagerMouse managerMouse, ManagerMap managerMap, int index) 15 | : base(managerMouse, managerMap) 16 | { 17 | this.index = index; 18 | 19 | int minX = 999, minY = 999; 20 | for (int i = 0; i < managerMap.FULL_MAP.Count; i++) 21 | { 22 | for (int j = 0; j < managerMap.FULL_MAP[i].Count; j++) 23 | { 24 | if (managerMap.FULL_MAP[i][j].tileType != TileType.WATER && !managerMap.FULL_MAP[i][j].isWall && !managerMap.FULL_MAP[i][j].isWater && j < minY) 25 | { 26 | minX = i; 27 | minY = j; 28 | } 29 | } 30 | } 31 | 32 | this.buildings.Add(new DarkPortal(minX, minY, managerMouse, managerMap, null)); 33 | } 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /Warcraft/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | #if __ANDROID__ 4 | using Android.App; 5 | #endif 6 | 7 | // Information about this assembly is defined by the following attributes. 8 | // Change them to the values specific to your project. 9 | 10 | [assembly: AssemblyTitle("Warcraft")] 11 | [assembly: AssemblyDescription("")] 12 | [assembly: AssemblyConfiguration("")] 13 | [assembly: AssemblyCompany("")] 14 | [assembly: AssemblyProduct("")] 15 | [assembly: AssemblyCopyright("${AuthorCopyright}")] 16 | [assembly: AssemblyTrademark("")] 17 | [assembly: AssemblyCulture("")] 18 | 19 | // The assembly version has the format "{Major}.{Minor}.{Build}.{Revision}". 20 | // The form "{Major}.{Minor}.*" will automatically update the build and revision, 21 | // and "{Major}.{Minor}.{Build}.*" will update just the revision. 22 | 23 | [assembly: AssemblyVersion("1.0.0")] 24 | 25 | // The following attributes are used to specify the signing key for the assembly, 26 | // if desired. See the Mono documentation for more information about signing. 27 | 28 | //[assembly: AssemblyDelaySign(false)] 29 | //[assembly: AssemblyKeyFile("")] 30 | -------------------------------------------------------------------------------- /Warcraft.userprefs: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /Warcraft/Util/Frame.cs: -------------------------------------------------------------------------------- 1 | using System.Collections.Generic; 2 | using System.Linq; 3 | 4 | namespace Warcraft.Util 5 | { 6 | struct Frame 7 | { 8 | public int[] sequence; 9 | public Dictionary startIndex; 10 | public bool flipX; 11 | public bool flipY; 12 | 13 | public Frame(Dictionary start) 14 | { 15 | sequence = null; 16 | startIndex = start; 17 | flipX = false; 18 | flipY = false; 19 | } 20 | 21 | public Frame(int start, int count) 22 | { 23 | startIndex = null; 24 | sequence = Enumerable.Range(start, count).ToArray(); 25 | flipX = false; 26 | flipY = false; 27 | } 28 | 29 | public Frame(Dictionary start, bool flipX) : this(start) 30 | { 31 | this.flipX = flipX; 32 | } 33 | 34 | public Frame(int start, int count, bool flipX) : this(start, count) 35 | { 36 | this.flipX = flipX; 37 | } 38 | 39 | public Frame(Dictionary start, bool flipX, bool flipY) : this(start, flipX) 40 | { 41 | this.flipY = flipY; 42 | } 43 | } 44 | } 45 | -------------------------------------------------------------------------------- /Warcraft/EA/CityHallController.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using Warcraft.Managers; 3 | 4 | namespace Warcraft.EA 5 | { 6 | class CityHallController 7 | { 8 | public int GOLD; 9 | public int FOOD; 10 | public int MINING; 11 | 12 | private int index; 13 | private ManagerMap managerMap; 14 | public ManagerUnits managerUnits; 15 | 16 | public CityHallController(int gold, int food, int mining, int index, ManagerMap managerMap) 17 | { 18 | GOLD = gold; 19 | FOOD = food; 20 | MINING = mining; 21 | 22 | this.index = index; 23 | this.managerMap = managerMap; 24 | } 25 | 26 | public String[][] GetGenes() 27 | { 28 | String[][] genes = new String[1][]; 29 | 30 | genes[0] = new String[3]; 31 | genes[0][0] = GeneticUtil.IntToBinary(GOLD, 12); 32 | genes[0][1] = GeneticUtil.IntToBinary(FOOD, 4); 33 | genes[0][2] = GeneticUtil.IntToBinary(MINING, 7); 34 | 35 | return genes; 36 | } 37 | 38 | public bool BuildPeon() 39 | { 40 | return (ManagerResources.BOT_GOLD[index] >= GOLD/* && ManagerResources.BOT_FOOD[index] >= FOOD && PeonMining() >= MINING*/); 41 | } 42 | 43 | private int PeonMining() 44 | { 45 | return managerUnits.units.FindAll(p => p.information.Type == Util.Units.PEON && p.workState == Units.WorkigState.NOTHING).Count; 46 | } 47 | 48 | } 49 | } 50 | -------------------------------------------------------------------------------- /Warcraft/Buildings/Orcs/DarkPortal.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using Warcraft.Managers; 4 | using Warcraft.Util; 5 | 6 | namespace Warcraft.Buildings.Orcs 7 | { 8 | class DarkPortal : Building 9 | { 10 | public DarkPortal(int tileX, int tileY, ManagerMouse managerMouse, ManagerMap managerMap, ManagerUnits managerUnits) 11 | : base(tileX, tileY, 128, 128, managerMouse, managerMap, managerUnits) 12 | { 13 | information = new InformationBuilding("Dark Portal", 1000, 0, 0, Util.Units.NONE, 0, Util.Buildings.DARK_PORTAL); 14 | 15 | Dictionary> sprites = new Dictionary>(); 16 | List spriteBuilding = new List(); 17 | // NORMAL 18 | spriteBuilding.Add(new Sprite(325, 658, 128, 128)); 19 | 20 | sprites.Add(AnimationType.WALKING, spriteBuilding); 21 | 22 | Dictionary animations = new Dictionary(); 23 | animations.Add("normal", new Frame(0, 1)); 24 | 25 | this.animations = new Animation(sprites, animations, "normal", width, height, false, 0); 26 | 27 | textureName = "Human Buildings (Summer)"; 28 | 29 | isBuilding = false; 30 | isPlaceSelected = false; 31 | isStartBuilding = false; 32 | 33 | isWorking = true; 34 | 35 | managerMap.AddWalls(Position, width / 32, height / 32); 36 | } 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /Warcraft/UI/Button.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Xna.Framework; 2 | using Microsoft.Xna.Framework.Graphics; 3 | 4 | namespace Warcraft.UI 5 | { 6 | class Button : UI 7 | { 8 | private Vector2 position; 9 | public int TextureX; 10 | public int TextureY; 11 | 12 | public Rectangle rectangle; 13 | 14 | public Button(int textureX, int textureY) 15 | : this(0, 100, textureX, textureY) 16 | { 17 | 18 | } 19 | 20 | public Button(int posX, int posY, int textureX, int textureY) 21 | : this(posX, posY, textureX * 49, textureY * 41, false) 22 | { 23 | 24 | } 25 | 26 | public Button(int posX, int posY, int textureX, int textureY, bool absolute) 27 | { 28 | position = new Vector2(minX + posX, posY); 29 | TextureX = textureX; 30 | TextureY = textureY; 31 | 32 | rectangle = new Rectangle((int)position.X, (int)position.Y, 48, 36); 33 | } 34 | 35 | public override void Draw(SpriteBatch spriteBatch) 36 | { 37 | spriteBatch.Draw(portraits, position, new Rectangle(TextureX, TextureY, 48, 36), Color.White); 38 | } 39 | 40 | public void Draw(SpriteBatch spriteBatch, Vector2 newPosition) 41 | { 42 | spriteBatch.Draw(portraits, newPosition, new Rectangle(TextureX, TextureY, 48, 36), Color.White); 43 | } 44 | } 45 | } 46 | -------------------------------------------------------------------------------- /Warcraft/Buildings/Orcs/PigFarm.cs: -------------------------------------------------------------------------------- 1 | using System.Collections.Generic; 2 | using Warcraft.Buildings.Neutral; 3 | using Warcraft.Managers; 4 | using Warcraft.Util; 5 | 6 | namespace Warcraft.Buildings.Orcs 7 | { 8 | class PigFarm : Farm 9 | { 10 | public PigFarm(int tileX, int tileY, ManagerMouse managerMouse, ManagerMap managerMap, ManagerUnits managerUnits) : 11 | base(tileX, tileY, 64, 64, managerMouse, managerMap, managerUnits) 12 | { 13 | information = new InformationBuilding("Pig Farm", 400, 500, 250, Util.Units.PEON, 100 * Warcraft.FPS, Util.Buildings.PIG_FARM); 14 | 15 | Dictionary> sprites = new Dictionary>(); 16 | List spriteBuilding = new List(); 17 | // BUILDING 18 | spriteBuilding.Add(new Sprite(560, 737, 48, 39)); 19 | spriteBuilding.Add(new Sprite(556, 865, 61, 52)); 20 | spriteBuilding.Add(new Sprite(272, 603, 63, 64)); 21 | spriteBuilding.Add(new Sprite(337, 603, 64, 64)); 22 | 23 | sprites.Add(AnimationType.WALKING, spriteBuilding); 24 | 25 | Dictionary animations = new Dictionary(); 26 | animations.Add("building", new Frame(0, 4)); 27 | 28 | this.animations = new Animation(sprites, animations, "building", width, height, false, information.BuildTime / spriteBuilding.Count); 29 | 30 | textureName = "Orc Buildings (Summer) "; 31 | 32 | unselected = true; 33 | } 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /Warcraft/Buildings/Humans/Church.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using Warcraft.Managers; 4 | using Warcraft.Util; 5 | 6 | namespace Warcraft.Buildings.Humans 7 | { 8 | class Church : Neutral.Church 9 | { 10 | public Church(int tileX, int tileY, ManagerMouse managerMouse, ManagerMap managerMap, ManagerUnits managerUnits) : 11 | base(tileX, tileY, managerMouse, managerMap, managerUnits) 12 | { 13 | information = new InformationBuilding("Church", 700, 900, 500, Util.Units.PEASANT, 175 * Warcraft.FPS, Util.Buildings.CHURCH); 14 | 15 | Dictionary> sprites = new Dictionary>(); 16 | List spriteBuilding = new List(); 17 | // BUILDING 18 | spriteBuilding.Add(new Sprite(576, 708, 48, 39)); 19 | spriteBuilding.Add(new Sprite(572, 836, 61, 52)); 20 | spriteBuilding.Add(new Sprite(308, 365, 87, 91)); 21 | spriteBuilding.Add(new Sprite(308, 264, 94, 96)); 22 | 23 | sprites.Add(AnimationType.WALKING, spriteBuilding); 24 | 25 | Dictionary animations = new Dictionary(); 26 | animations.Add("building", new Frame(0, 4)); 27 | 28 | this.animations = new Animation(sprites, animations, "building", width, height, false, information.BuildTime / spriteBuilding.Count); 29 | 30 | textureName = "Human Buildings (Summer)"; 31 | 32 | ui = new UI.Buildings.Church(this); 33 | } 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /Warcraft/Buildings/Neutral/Barracks.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Xna.Framework; 2 | using System.Collections.Generic; 3 | using Warcraft.Commands; 4 | using Warcraft.Managers; 5 | using Warcraft.Units.Humans; 6 | using Warcraft.Util; 7 | 8 | namespace Warcraft.Buildings.Neutral 9 | { 10 | class Barracks : Building 11 | { 12 | public Barracks(int tileX, int tileY, ManagerMouse managerMouse, ManagerMap managerMap, ManagerUnits managerUnits) 13 | : base(tileX, tileY, 128, 128, managerMouse, managerMap, managerUnits) 14 | { 15 | ui = new UI.Buildings.Barracks(managerMouse, this); 16 | } 17 | 18 | public Barracks(int tileX, int tileY, int width, int height, ManagerMouse managerMouse, ManagerMap managerMap, ManagerUnits managerUnits) 19 | : base(tileX, tileY, width, height, managerMouse, managerMap, managerUnits) 20 | { 21 | ui = new UI.Buildings.Barracks(managerMouse, this); 22 | } 23 | 24 | public override void Update() 25 | { 26 | base.Update(); 27 | 28 | for (int i = 0; i < commands.Count; i++) 29 | { 30 | var c = (commands[i] as BuilderUnits); 31 | c.Update(); 32 | 33 | if (c.completed) 34 | { 35 | var p = new Point(((int)Position.X / 32) + ((width / Warcraft.TILE_SIZE) / 2), ((int)Position.Y / 32) + ((height / Warcraft.TILE_SIZE))); 36 | managerUnits.Factory(c.type, p.X, p.Y, unitDestination.X, unitDestination.Y); 37 | c.completed = false; 38 | c.remove = true; 39 | } 40 | } 41 | } 42 | } 43 | } 44 | -------------------------------------------------------------------------------- /Warcraft/Buildings/Orcs/AltarOfStorms.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using Warcraft.Managers; 4 | using Warcraft.Util; 5 | 6 | namespace Warcraft.Buildings.Orcs 7 | { 8 | class AltarOfStorms : Neutral.Church 9 | { 10 | public AltarOfStorms(int tileX, int tileY, ManagerMouse managerMouse, ManagerMap managerMap, ManagerUnits managerUnits) : 11 | base(tileX, tileY, managerMouse, managerMap, managerUnits) 12 | { 13 | information = new InformationBuilding("Altar of Storms", 700, 900, 500, Util.Units.PEON, 175 * Warcraft.FPS, Util.Buildings.ALTAR_OF_STORMS); 14 | 15 | Dictionary> sprites = new Dictionary>(); 16 | List spriteBuilding = new List(); 17 | // BUILDING 18 | spriteBuilding.Add(new Sprite(576, 708, 48, 39)); 19 | spriteBuilding.Add(new Sprite(572, 836, 61, 52)); 20 | spriteBuilding.Add(new Sprite(217, 252, 91, 86)); 21 | spriteBuilding.Add(new Sprite(308, 242, 96, 96)); 22 | 23 | sprites.Add(AnimationType.WALKING, spriteBuilding); 24 | 25 | Dictionary animations = new Dictionary(); 26 | animations.Add("building", new Frame(0, 4)); 27 | 28 | this.animations = new Animation(sprites, animations, "building", width, height, false, information.BuildTime / spriteBuilding.Count); 29 | 30 | textureName = "Orc Buildings (Summer) "; 31 | 32 | ui = new UI.Buildings.AltarOfStorms(this); 33 | } 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /Warcraft/Map/GenerateRooms.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using Microsoft.Xna.Framework; 4 | using Microsoft.Xna.Framework.Graphics; 5 | using Warcraft.UI; 6 | using Warcraft.Util; 7 | 8 | namespace Warcraft.Map 9 | { 10 | public class GenerateRooms 11 | { 12 | public List Rooms = new List(); 13 | 14 | public GenerateRooms() 15 | { 16 | Random rng = new Random(); 17 | 18 | int w = rng.Next(32 * 100, 32 * 128); 19 | Rooms.Add(new Room(0, 0, w, w)); 20 | 21 | // while (Rooms.Count < 1) 22 | // { 23 | // w = rng.Next(32 * 80, 32 * 100); 24 | 25 | // int x = rng.Next(0, (Warcraft.WINDOWS_WIDTH * 20) - w); 26 | // int y = rng.Next(0, (Warcraft.WINDOWS_HEIGHT * 20) - w); 27 | 28 | // x = Functions.Normalize(x); 29 | // y = Functions.Normalize(y); 30 | 31 | // Room room = new Room(x, y, w, w); 32 | 33 | // bool intersect = false; 34 | // for (int j = 0; j < Rooms.Count; j++) 35 | // { 36 | // if (Rooms[j].rectangle.Intersects(room.rectangle)) { 37 | // intersect = true; 38 | // break; 39 | // } 40 | // } 41 | 42 | // if (!intersect) 43 | // { 44 | // Rooms.Add(room); 45 | // } 46 | //} 47 | } 48 | } 49 | } 50 | -------------------------------------------------------------------------------- /Warcraft/Managers/ManagerResources.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using Warcraft.Units; 4 | using Warcraft.Units.Humans; 5 | 6 | namespace Warcraft.Managers 7 | { 8 | class ManagerResources 9 | { 10 | public static int PLAYER_GOLD = 5000; 11 | public static int PLAYER_WOOD = 99999; 12 | public static int PLAYER_FOOD = 5; 13 | public static int PLAYER_OIL = 99999; 14 | 15 | public static List BOT_GOLD = new List(); 16 | public static List BOT_WOOD = new List(); 17 | public static List BOT_FOOD = new List(); 18 | public static List BOT_OIL = new List(); 19 | 20 | public static bool CompareGold(int index, int quantity) 21 | { 22 | return ((index == -1 && PLAYER_GOLD >= quantity) || (index > -1 && BOT_GOLD[index] >= quantity)); 23 | } 24 | 25 | public static bool CompareFood(int index, int quantity) 26 | { 27 | return ((index == -1 && PLAYER_FOOD >= quantity) || (index > -1 && BOT_FOOD[index] >= quantity)); 28 | } 29 | 30 | public static void ReduceGold(int index, int quantity) 31 | { 32 | if (index == -1) 33 | PLAYER_GOLD -= quantity; 34 | 35 | if (index > -1) 36 | BOT_GOLD[index] -= quantity; 37 | } 38 | 39 | public static void ReduceFood(int index, int quantity) 40 | { 41 | if (index == -1) 42 | PLAYER_FOOD -= quantity; 43 | 44 | if (index > -1) 45 | BOT_FOOD[index] -= quantity; 46 | } 47 | } 48 | } 49 | -------------------------------------------------------------------------------- /Warcraft/Content/obj/DesktopGL/axe.mgcontent: -------------------------------------------------------------------------------- 1 | 2 | 3 | /Users/paulomenezes/Documents/repositories/warcraft/Warcraft/Content/axe.png 4 | 2017-05-07T18:47:23-03:00 5 | /Users/paulomenezes/Documents/repositories/warcraft/Warcraft/Content/bin/DesktopGL/axe.xnb 6 | 2017-08-23T17:47:29-03:00 7 | TextureImporter 8 | 2017-03-01T12:06:24-03:00 9 | TextureProcessor 10 | 2017-03-01T12:06:24-03:00 11 | 12 | ColorKeyColor 13 | 255,0,255,255 14 | 15 | 16 | ColorKeyEnabled 17 | True 18 | 19 | 20 | GenerateMipmaps 21 | False 22 | 23 | 24 | PremultiplyAlpha 25 | True 26 | 27 | 28 | ResizeToPowerOfTwo 29 | False 30 | 31 | 32 | MakeSquare 33 | False 34 | 35 | 36 | TextureFormat 37 | Color 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /Warcraft/Content/obj/DesktopGL/Grunt.mgcontent: -------------------------------------------------------------------------------- 1 | 2 | 3 | /Users/paulomenezes/Documents/repositories/warcraft/Warcraft/Content/Grunt.png 4 | 2017-05-07T18:47:23-03:00 5 | /Users/paulomenezes/Documents/repositories/warcraft/Warcraft/Content/bin/DesktopGL/Grunt.xnb 6 | 2017-08-23T17:47:30-03:00 7 | TextureImporter 8 | 2017-03-01T12:06:24-03:00 9 | TextureProcessor 10 | 2017-03-01T12:06:24-03:00 11 | 12 | ColorKeyColor 13 | 255,0,255,255 14 | 15 | 16 | ColorKeyEnabled 17 | True 18 | 19 | 20 | GenerateMipmaps 21 | False 22 | 23 | 24 | PremultiplyAlpha 25 | True 26 | 27 | 28 | ResizeToPowerOfTwo 29 | False 30 | 31 | 32 | MakeSquare 33 | False 34 | 35 | 36 | TextureFormat 37 | Color 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /Warcraft/Content/obj/DesktopGL/Icons.mgcontent: -------------------------------------------------------------------------------- 1 | 2 | 3 | /Users/paulomenezes/Documents/repositories/warcraft/Warcraft/Content/Icons.png 4 | 2017-05-29T17:55:38-03:00 5 | /Users/paulomenezes/Documents/repositories/warcraft/Warcraft/Content/bin/DesktopGL/Icons.xnb 6 | 2017-08-23T17:47:30-03:00 7 | TextureImporter 8 | 2017-03-01T12:06:24-03:00 9 | TextureProcessor 10 | 2017-03-01T12:06:24-03:00 11 | 12 | ColorKeyColor 13 | 255,0,255,255 14 | 15 | 16 | ColorKeyEnabled 17 | True 18 | 19 | 20 | GenerateMipmaps 21 | False 22 | 23 | 24 | PremultiplyAlpha 25 | True 26 | 27 | 28 | ResizeToPowerOfTwo 29 | False 30 | 31 | 32 | MakeSquare 33 | False 34 | 35 | 36 | TextureFormat 37 | Color 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /Warcraft/Content/obj/DesktopGL/Mage.mgcontent: -------------------------------------------------------------------------------- 1 | 2 | 3 | /Users/paulomenezes/Documents/repositories/warcraft/Warcraft/Content/Mage.png 4 | 2017-05-07T18:47:23-03:00 5 | /Users/paulomenezes/Documents/repositories/warcraft/Warcraft/Content/bin/DesktopGL/Mage.xnb 6 | 2017-08-23T17:47:30-03:00 7 | TextureImporter 8 | 2017-03-01T12:06:24-03:00 9 | TextureProcessor 10 | 2017-03-01T12:06:24-03:00 11 | 12 | ColorKeyColor 13 | 255,0,255,255 14 | 15 | 16 | ColorKeyEnabled 17 | True 18 | 19 | 20 | GenerateMipmaps 21 | False 22 | 23 | 24 | PremultiplyAlpha 25 | True 26 | 27 | 28 | ResizeToPowerOfTwo 29 | False 30 | 31 | 32 | MakeSquare 33 | False 34 | 35 | 36 | TextureFormat 37 | Color 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /Warcraft/Content/obj/DesktopGL/arrow.mgcontent: -------------------------------------------------------------------------------- 1 | 2 | 3 | /Users/paulomenezes/Documents/repositories/warcraft/Warcraft/Content/arrow.png 4 | 2017-05-07T18:47:23-03:00 5 | /Users/paulomenezes/Documents/repositories/warcraft/Warcraft/Content/bin/DesktopGL/arrow.xnb 6 | 2017-08-23T17:47:29-03:00 7 | TextureImporter 8 | 2017-03-01T12:06:24-03:00 9 | TextureProcessor 10 | 2017-03-01T12:06:24-03:00 11 | 12 | ColorKeyColor 13 | 255,0,255,255 14 | 15 | 16 | ColorKeyEnabled 17 | True 18 | 19 | 20 | GenerateMipmaps 21 | False 22 | 23 | 24 | PremultiplyAlpha 25 | True 26 | 27 | 28 | ResizeToPowerOfTwo 29 | False 30 | 31 | 32 | MakeSquare 33 | False 34 | 35 | 36 | TextureFormat 37 | Color 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /Warcraft/Content/obj/DesktopGL/Cursor.mgcontent: -------------------------------------------------------------------------------- 1 | 2 | 3 | /Users/paulomenezes/Documents/repositories/warcraft/Warcraft/Content/Cursor.png 4 | 2017-05-07T18:47:23-03:00 5 | /Users/paulomenezes/Documents/repositories/warcraft/Warcraft/Content/bin/DesktopGL/Cursor.xnb 6 | 2017-08-23T17:47:29-03:00 7 | TextureImporter 8 | 2017-03-01T12:06:24-03:00 9 | TextureProcessor 10 | 2017-03-01T12:06:24-03:00 11 | 12 | ColorKeyColor 13 | 255,0,255,255 14 | 15 | 16 | ColorKeyEnabled 17 | True 18 | 19 | 20 | GenerateMipmaps 21 | False 22 | 23 | 24 | PremultiplyAlpha 25 | True 26 | 27 | 28 | ResizeToPowerOfTwo 29 | False 30 | 31 | 32 | MakeSquare 33 | False 34 | 35 | 36 | TextureFormat 37 | Color 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /Warcraft/Content/obj/DesktopGL/Dwarven.mgcontent: -------------------------------------------------------------------------------- 1 | 2 | 3 | /Users/paulomenezes/Documents/repositories/warcraft/Warcraft/Content/Dwarven.png 4 | 2017-05-07T18:47:23-03:00 5 | /Users/paulomenezes/Documents/repositories/warcraft/Warcraft/Content/bin/DesktopGL/Dwarven.xnb 6 | 2017-08-23T17:47:29-03:00 7 | TextureImporter 8 | 2017-03-01T12:06:24-03:00 9 | TextureProcessor 10 | 2017-03-01T12:06:24-03:00 11 | 12 | ColorKeyColor 13 | 255,0,255,255 14 | 15 | 16 | ColorKeyEnabled 17 | True 18 | 19 | 20 | GenerateMipmaps 21 | False 22 | 23 | 24 | PremultiplyAlpha 25 | True 26 | 27 | 28 | ResizeToPowerOfTwo 29 | False 30 | 31 | 32 | MakeSquare 33 | False 34 | 35 | 36 | TextureFormat 37 | Color 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /Warcraft/Content/obj/DesktopGL/Footman.mgcontent: -------------------------------------------------------------------------------- 1 | 2 | 3 | /Users/paulomenezes/Documents/repositories/warcraft/Warcraft/Content/Footman.png 4 | 2017-05-07T18:47:23-03:00 5 | /Users/paulomenezes/Documents/repositories/warcraft/Warcraft/Content/bin/DesktopGL/Footman.xnb 6 | 2017-08-23T17:47:30-03:00 7 | TextureImporter 8 | 2017-03-01T12:06:24-03:00 9 | TextureProcessor 10 | 2017-03-01T12:06:24-03:00 11 | 12 | ColorKeyColor 13 | 255,0,255,255 14 | 15 | 16 | ColorKeyEnabled 17 | True 18 | 19 | 20 | GenerateMipmaps 21 | False 22 | 23 | 24 | PremultiplyAlpha 25 | True 26 | 27 | 28 | ResizeToPowerOfTwo 29 | False 30 | 31 | 32 | MakeSquare 33 | False 34 | 35 | 36 | TextureFormat 37 | Color 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /Warcraft/Content/obj/DesktopGL/Knight.mgcontent: -------------------------------------------------------------------------------- 1 | 2 | 3 | /Users/paulomenezes/Documents/repositories/warcraft/Warcraft/Content/Knight.png 4 | 2017-05-07T18:47:23-03:00 5 | /Users/paulomenezes/Documents/repositories/warcraft/Warcraft/Content/bin/DesktopGL/Knight.xnb 6 | 2017-08-23T17:47:31-03:00 7 | TextureImporter 8 | 2017-03-01T12:06:24-03:00 9 | TextureProcessor 10 | 2017-03-01T12:06:24-03:00 11 | 12 | ColorKeyColor 13 | 255,0,255,255 14 | 15 | 16 | ColorKeyEnabled 17 | True 18 | 19 | 20 | GenerateMipmaps 21 | False 22 | 23 | 24 | PremultiplyAlpha 25 | True 26 | 27 | 28 | ResizeToPowerOfTwo 29 | False 30 | 31 | 32 | MakeSquare 33 | False 34 | 35 | 36 | TextureFormat 37 | Color 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /Warcraft/Content/obj/DesktopGL/Skeleton.mgcontent: -------------------------------------------------------------------------------- 1 | 2 | 3 | /Users/paulomenezes/Documents/repositories/warcraft/Warcraft/Content/Skeleton.png 4 | 2017-05-29T08:05:30-03:00 5 | /Users/paulomenezes/Documents/repositories/warcraft/Warcraft/Content/bin/DesktopGL/Skeleton.xnb 6 | 2017-08-23T17:47:31-03:00 7 | TextureImporter 8 | 2017-03-01T12:06:24-03:00 9 | TextureProcessor 10 | 2017-03-01T12:06:24-03:00 11 | 12 | ColorKeyColor 13 | 255,0,255,255 14 | 15 | 16 | ColorKeyEnabled 17 | True 18 | 19 | 20 | GenerateMipmaps 21 | False 22 | 23 | 24 | PremultiplyAlpha 25 | True 26 | 27 | 28 | ResizeToPowerOfTwo 29 | False 30 | 31 | 32 | MakeSquare 33 | False 34 | 35 | 36 | TextureFormat 37 | Color 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /Warcraft/Content/obj/Windows/Mage.mgcontent: -------------------------------------------------------------------------------- 1 | 2 | 3 | /Users/paulomenezes/Documents/repositories/warcraft-monogame/Warcraft/Content/Mage.png 4 | 2017-05-07T18:47:23-03:00 5 | /Users/paulomenezes/Documents/repositories/warcraft-monogame/Warcraft/Content/bin/Windows/Mage.xnb 6 | 2017-05-13T18:41:45-03:00 7 | TextureImporter 8 | 2017-03-01T12:06:24-03:00 9 | TextureProcessor 10 | 2017-03-01T12:06:24-03:00 11 | 12 | ColorKeyColor 13 | 255,0,255,255 14 | 15 | 16 | ColorKeyEnabled 17 | True 18 | 19 | 20 | GenerateMipmaps 21 | False 22 | 23 | 24 | PremultiplyAlpha 25 | True 26 | 27 | 28 | ResizeToPowerOfTwo 29 | False 30 | 31 | 32 | MakeSquare 33 | False 34 | 35 | 36 | TextureFormat 37 | Color 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /Warcraft/Content/obj/Windows/axe.mgcontent: -------------------------------------------------------------------------------- 1 | 2 | 3 | /Users/paulomenezes/Documents/repositories/warcraft-monogame/Warcraft/Content/axe.png 4 | 2017-05-07T18:47:23-03:00 5 | /Users/paulomenezes/Documents/repositories/warcraft-monogame/Warcraft/Content/bin/Windows/axe.xnb 6 | 2017-05-13T18:41:45-03:00 7 | TextureImporter 8 | 2017-03-01T12:06:24-03:00 9 | TextureProcessor 10 | 2017-03-01T12:06:24-03:00 11 | 12 | ColorKeyColor 13 | 255,0,255,255 14 | 15 | 16 | ColorKeyEnabled 17 | True 18 | 19 | 20 | GenerateMipmaps 21 | False 22 | 23 | 24 | PremultiplyAlpha 25 | True 26 | 27 | 28 | ResizeToPowerOfTwo 29 | False 30 | 31 | 32 | MakeSquare 33 | False 34 | 35 | 36 | TextureFormat 37 | Color 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /Warcraft/app.manifest: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | true/pm 31 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /Warcraft/Content/obj/DesktopGL/Peon_dying.mgcontent: -------------------------------------------------------------------------------- 1 | 2 | 3 | /Users/paulomenezes/Documents/repositories/warcraft/Warcraft/Content/Peon_dying.png 4 | 2017-05-26T21:22:12-03:00 5 | /Users/paulomenezes/Documents/repositories/warcraft/Warcraft/Content/bin/DesktopGL/Peon_dying.xnb 6 | 2017-08-23T17:47:30-03:00 7 | TextureImporter 8 | 2017-03-01T12:06:24-03:00 9 | TextureProcessor 10 | 2017-03-01T12:06:24-03:00 11 | 12 | ColorKeyColor 13 | 255,0,255,255 14 | 15 | 16 | ColorKeyEnabled 17 | True 18 | 19 | 20 | GenerateMipmaps 21 | False 22 | 23 | 24 | PremultiplyAlpha 25 | True 26 | 27 | 28 | ResizeToPowerOfTwo 29 | False 30 | 31 | 32 | MakeSquare 33 | False 34 | 35 | 36 | TextureFormat 37 | Color 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /Warcraft/Content/obj/DesktopGL/Peon_gold.mgcontent: -------------------------------------------------------------------------------- 1 | 2 | 3 | /Users/paulomenezes/Documents/repositories/warcraft/Warcraft/Content/Peon_gold.png 4 | 2017-05-26T21:22:27-03:00 5 | /Users/paulomenezes/Documents/repositories/warcraft/Warcraft/Content/bin/DesktopGL/Peon_gold.xnb 6 | 2017-08-23T17:47:30-03:00 7 | TextureImporter 8 | 2017-03-01T12:06:24-03:00 9 | TextureProcessor 10 | 2017-03-01T12:06:24-03:00 11 | 12 | ColorKeyColor 13 | 255,0,255,255 14 | 15 | 16 | ColorKeyEnabled 17 | True 18 | 19 | 20 | GenerateMipmaps 21 | False 22 | 23 | 24 | PremultiplyAlpha 25 | True 26 | 27 | 28 | ResizeToPowerOfTwo 29 | False 30 | 31 | 32 | MakeSquare 33 | False 34 | 35 | 36 | TextureFormat 37 | Color 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /Warcraft/Content/obj/Windows/Grunt.mgcontent: -------------------------------------------------------------------------------- 1 | 2 | 3 | /Users/paulomenezes/Documents/repositories/warcraft-monogame/Warcraft/Content/Grunt.png 4 | 2017-05-07T18:47:23-03:00 5 | /Users/paulomenezes/Documents/repositories/warcraft-monogame/Warcraft/Content/bin/Windows/Grunt.xnb 6 | 2017-05-13T18:41:45-03:00 7 | TextureImporter 8 | 2017-03-01T12:06:24-03:00 9 | TextureProcessor 10 | 2017-03-01T12:06:24-03:00 11 | 12 | ColorKeyColor 13 | 255,0,255,255 14 | 15 | 16 | ColorKeyEnabled 17 | True 18 | 19 | 20 | GenerateMipmaps 21 | False 22 | 23 | 24 | PremultiplyAlpha 25 | True 26 | 27 | 28 | ResizeToPowerOfTwo 29 | False 30 | 31 | 32 | MakeSquare 33 | False 34 | 35 | 36 | TextureFormat 37 | Color 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /Warcraft/Content/obj/Windows/Icons.mgcontent: -------------------------------------------------------------------------------- 1 | 2 | 3 | /Users/paulomenezes/Documents/repositories/warcraft-monogame/Warcraft/Content/Icons.png 4 | 2017-05-07T18:47:23-03:00 5 | /Users/paulomenezes/Documents/repositories/warcraft-monogame/Warcraft/Content/bin/Windows/Icons.xnb 6 | 2017-05-13T18:41:45-03:00 7 | TextureImporter 8 | 2017-03-01T12:06:24-03:00 9 | TextureProcessor 10 | 2017-03-01T12:06:24-03:00 11 | 12 | ColorKeyColor 13 | 255,0,255,255 14 | 15 | 16 | ColorKeyEnabled 17 | True 18 | 19 | 20 | GenerateMipmaps 21 | False 22 | 23 | 24 | PremultiplyAlpha 25 | True 26 | 27 | 28 | ResizeToPowerOfTwo 29 | False 30 | 31 | 32 | MakeSquare 33 | False 34 | 35 | 36 | TextureFormat 37 | Color 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /Warcraft/Content/obj/Windows/arrow.mgcontent: -------------------------------------------------------------------------------- 1 | 2 | 3 | /Users/paulomenezes/Documents/repositories/warcraft-monogame/Warcraft/Content/arrow.png 4 | 2017-05-07T18:47:23-03:00 5 | /Users/paulomenezes/Documents/repositories/warcraft-monogame/Warcraft/Content/bin/Windows/arrow.xnb 6 | 2017-05-13T18:41:45-03:00 7 | TextureImporter 8 | 2017-03-01T12:06:24-03:00 9 | TextureProcessor 10 | 2017-03-01T12:06:24-03:00 11 | 12 | ColorKeyColor 13 | 255,0,255,255 14 | 15 | 16 | ColorKeyEnabled 17 | True 18 | 19 | 20 | GenerateMipmaps 21 | False 22 | 23 | 24 | PremultiplyAlpha 25 | True 26 | 27 | 28 | ResizeToPowerOfTwo 29 | False 30 | 31 | 32 | MakeSquare 33 | False 34 | 35 | 36 | TextureFormat 37 | Color 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /Warcraft/Content/obj/DesktopGL/Elven Archer.mgcontent: -------------------------------------------------------------------------------- 1 | 2 | 3 | /Users/paulomenezes/Documents/repositories/warcraft/Warcraft/Content/Elven Archer.png 4 | 2017-05-07T18:47:23-03:00 5 | /Users/paulomenezes/Documents/repositories/warcraft/Warcraft/Content/bin/DesktopGL/Elven Archer.xnb 6 | 2017-08-23T17:47:29-03:00 7 | TextureImporter 8 | 2017-03-01T12:06:24-03:00 9 | TextureProcessor 10 | 2017-03-01T12:06:24-03:00 11 | 12 | ColorKeyColor 13 | 255,0,255,255 14 | 15 | 16 | ColorKeyEnabled 17 | True 18 | 19 | 20 | GenerateMipmaps 21 | False 22 | 23 | 24 | PremultiplyAlpha 25 | True 26 | 27 | 28 | ResizeToPowerOfTwo 29 | False 30 | 31 | 32 | MakeSquare 33 | False 34 | 35 | 36 | TextureFormat 37 | Color 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /Warcraft/Content/obj/DesktopGL/Peasant_gold.mgcontent: -------------------------------------------------------------------------------- 1 | 2 | 3 | /Users/paulomenezes/Documents/repositories/warcraft/Warcraft/Content/Peasant_gold.png 4 | 2017-05-07T18:47:23-03:00 5 | /Users/paulomenezes/Documents/repositories/warcraft/Warcraft/Content/bin/DesktopGL/Peasant_gold.xnb 6 | 2017-08-23T17:47:30-03:00 7 | TextureImporter 8 | 2017-03-01T12:06:24-03:00 9 | TextureProcessor 10 | 2017-03-01T12:06:24-03:00 11 | 12 | ColorKeyColor 13 | 255,0,255,255 14 | 15 | 16 | ColorKeyEnabled 17 | True 18 | 19 | 20 | GenerateMipmaps 21 | False 22 | 23 | 24 | PremultiplyAlpha 25 | True 26 | 27 | 28 | ResizeToPowerOfTwo 29 | False 30 | 31 | 32 | MakeSquare 33 | False 34 | 35 | 36 | TextureFormat 37 | Color 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /Warcraft/Content/obj/DesktopGL/Peon_walking.mgcontent: -------------------------------------------------------------------------------- 1 | 2 | 3 | /Users/paulomenezes/Documents/repositories/warcraft/Warcraft/Content/Peon_walking.png 4 | 2017-05-26T21:21:39-03:00 5 | /Users/paulomenezes/Documents/repositories/warcraft/Warcraft/Content/bin/DesktopGL/Peon_walking.xnb 6 | 2017-08-23T17:47:30-03:00 7 | TextureImporter 8 | 2017-03-01T12:06:24-03:00 9 | TextureProcessor 10 | 2017-03-01T12:06:24-03:00 11 | 12 | ColorKeyColor 13 | 255,0,255,255 14 | 15 | 16 | ColorKeyEnabled 17 | True 18 | 19 | 20 | GenerateMipmaps 21 | False 22 | 23 | 24 | PremultiplyAlpha 25 | True 26 | 27 | 28 | ResizeToPowerOfTwo 29 | False 30 | 31 | 32 | MakeSquare 33 | False 34 | 35 | 36 | TextureFormat 37 | Color 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /Warcraft/Content/obj/DesktopGL/Summer Tiles.mgcontent: -------------------------------------------------------------------------------- 1 | 2 | 3 | /Users/paulomenezes/Documents/repositories/warcraft/Warcraft/Content/Summer Tiles.png 4 | 2017-05-29T17:55:38-03:00 5 | /Users/paulomenezes/Documents/repositories/warcraft/Warcraft/Content/bin/DesktopGL/Summer Tiles.xnb 6 | 2017-08-23T17:47:30-03:00 7 | TextureImporter 8 | 2017-03-01T12:06:24-03:00 9 | TextureProcessor 10 | 2017-03-01T12:06:24-03:00 11 | 12 | ColorKeyColor 13 | 255,0,255,255 14 | 15 | 16 | ColorKeyEnabled 17 | True 18 | 19 | 20 | GenerateMipmaps 21 | False 22 | 23 | 24 | PremultiplyAlpha 25 | True 26 | 27 | 28 | ResizeToPowerOfTwo 29 | False 30 | 31 | 32 | MakeSquare 33 | False 34 | 35 | 36 | TextureFormat 37 | Color 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /Warcraft/Content/obj/Windows/Cursor.mgcontent: -------------------------------------------------------------------------------- 1 | 2 | 3 | /Users/paulomenezes/Documents/repositories/warcraft-monogame/Warcraft/Content/Cursor.png 4 | 2017-05-07T18:47:23-03:00 5 | /Users/paulomenezes/Documents/repositories/warcraft-monogame/Warcraft/Content/bin/Windows/Cursor.xnb 6 | 2017-05-14T19:08:49-03:00 7 | TextureImporter 8 | 2017-03-01T12:06:24-03:00 9 | TextureProcessor 10 | 2017-03-01T12:06:24-03:00 11 | 12 | ColorKeyColor 13 | 255,0,255,255 14 | 15 | 16 | ColorKeyEnabled 17 | True 18 | 19 | 20 | GenerateMipmaps 21 | False 22 | 23 | 24 | PremultiplyAlpha 25 | True 26 | 27 | 28 | ResizeToPowerOfTwo 29 | False 30 | 31 | 32 | MakeSquare 33 | False 34 | 35 | 36 | TextureFormat 37 | Color 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /Warcraft/Content/obj/Windows/Dwarven.mgcontent: -------------------------------------------------------------------------------- 1 | 2 | 3 | /Users/paulomenezes/Documents/repositories/warcraft-monogame/Warcraft/Content/Dwarven.png 4 | 2017-05-07T18:47:23-03:00 5 | /Users/paulomenezes/Documents/repositories/warcraft-monogame/Warcraft/Content/bin/Windows/Dwarven.xnb 6 | 2017-05-13T18:41:45-03:00 7 | TextureImporter 8 | 2017-03-01T12:06:24-03:00 9 | TextureProcessor 10 | 2017-03-01T12:06:24-03:00 11 | 12 | ColorKeyColor 13 | 255,0,255,255 14 | 15 | 16 | ColorKeyEnabled 17 | True 18 | 19 | 20 | GenerateMipmaps 21 | False 22 | 23 | 24 | PremultiplyAlpha 25 | True 26 | 27 | 28 | ResizeToPowerOfTwo 29 | False 30 | 31 | 32 | MakeSquare 33 | False 34 | 35 | 36 | TextureFormat 37 | Color 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /Warcraft/Content/obj/Windows/Footman.mgcontent: -------------------------------------------------------------------------------- 1 | 2 | 3 | /Users/paulomenezes/Documents/repositories/warcraft-monogame/Warcraft/Content/Footman.png 4 | 2017-05-07T18:47:23-03:00 5 | /Users/paulomenezes/Documents/repositories/warcraft-monogame/Warcraft/Content/bin/Windows/Footman.xnb 6 | 2017-05-13T18:41:45-03:00 7 | TextureImporter 8 | 2017-03-01T12:06:24-03:00 9 | TextureProcessor 10 | 2017-03-01T12:06:24-03:00 11 | 12 | ColorKeyColor 13 | 255,0,255,255 14 | 15 | 16 | ColorKeyEnabled 17 | True 18 | 19 | 20 | GenerateMipmaps 21 | False 22 | 23 | 24 | PremultiplyAlpha 25 | True 26 | 27 | 28 | ResizeToPowerOfTwo 29 | False 30 | 31 | 32 | MakeSquare 33 | False 34 | 35 | 36 | TextureFormat 37 | Color 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /Warcraft/Content/obj/Windows/Knight.mgcontent: -------------------------------------------------------------------------------- 1 | 2 | 3 | /Users/paulomenezes/Documents/repositories/warcraft-monogame/Warcraft/Content/Knight.png 4 | 2017-05-07T18:47:23-03:00 5 | /Users/paulomenezes/Documents/repositories/warcraft-monogame/Warcraft/Content/bin/Windows/Knight.xnb 6 | 2017-05-13T18:41:45-03:00 7 | TextureImporter 8 | 2017-03-01T12:06:24-03:00 9 | TextureProcessor 10 | 2017-03-01T12:06:24-03:00 11 | 12 | ColorKeyColor 13 | 255,0,255,255 14 | 15 | 16 | ColorKeyEnabled 17 | True 18 | 19 | 20 | GenerateMipmaps 21 | False 22 | 23 | 24 | PremultiplyAlpha 25 | True 26 | 27 | 28 | ResizeToPowerOfTwo 29 | False 30 | 31 | 32 | MakeSquare 33 | False 34 | 35 | 36 | TextureFormat 37 | Color 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /Warcraft/Content/obj/DesktopGL/Peasant_dying.mgcontent: -------------------------------------------------------------------------------- 1 | 2 | 3 | /Users/paulomenezes/Documents/repositories/warcraft/Warcraft/Content/Peasant_dying.png 4 | 2017-05-07T18:47:23-03:00 5 | /Users/paulomenezes/Documents/repositories/warcraft/Warcraft/Content/bin/DesktopGL/Peasant_dying.xnb 6 | 2017-08-23T17:47:30-03:00 7 | TextureImporter 8 | 2017-03-01T12:06:24-03:00 9 | TextureProcessor 10 | 2017-03-01T12:06:24-03:00 11 | 12 | ColorKeyColor 13 | 255,0,255,255 14 | 15 | 16 | ColorKeyEnabled 17 | True 18 | 19 | 20 | GenerateMipmaps 21 | False 22 | 23 | 24 | PremultiplyAlpha 25 | True 26 | 27 | 28 | ResizeToPowerOfTwo 29 | False 30 | 31 | 32 | MakeSquare 33 | False 34 | 35 | 36 | TextureFormat 37 | Color 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /Warcraft/Content/obj/DesktopGL/Peasant_walking.mgcontent: -------------------------------------------------------------------------------- 1 | 2 | 3 | /Users/paulomenezes/Documents/repositories/warcraft/Warcraft/Content/Peasant_walking.png 4 | 2017-05-07T18:47:23-03:00 5 | /Users/paulomenezes/Documents/repositories/warcraft/Warcraft/Content/bin/DesktopGL/Peasant_walking.xnb 6 | 2017-08-23T17:47:30-03:00 7 | TextureImporter 8 | 2017-03-01T12:06:24-03:00 9 | TextureProcessor 10 | 2017-03-01T12:06:24-03:00 11 | 12 | ColorKeyColor 13 | 255,0,255,255 14 | 15 | 16 | ColorKeyEnabled 17 | True 18 | 19 | 20 | GenerateMipmaps 21 | False 22 | 23 | 24 | PremultiplyAlpha 25 | True 26 | 27 | 28 | ResizeToPowerOfTwo 29 | False 30 | 31 | 32 | MakeSquare 33 | False 34 | 35 | 36 | TextureFormat 37 | Color 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /Warcraft/Content/obj/DesktopGL/Troll Axethrower.mgcontent: -------------------------------------------------------------------------------- 1 | 2 | 3 | /Users/paulomenezes/Documents/repositories/warcraft/Warcraft/Content/Troll Axethrower.png 4 | 2017-05-07T18:47:23-03:00 5 | /Users/paulomenezes/Documents/repositories/warcraft/Warcraft/Content/bin/DesktopGL/Troll Axethrower.xnb 6 | 2017-08-23T17:47:30-03:00 7 | TextureImporter 8 | 2017-03-01T12:06:24-03:00 9 | TextureProcessor 10 | 2017-03-01T12:06:24-03:00 11 | 12 | ColorKeyColor 13 | 255,0,255,255 14 | 15 | 16 | ColorKeyEnabled 17 | True 18 | 19 | 20 | GenerateMipmaps 21 | False 22 | 23 | 24 | PremultiplyAlpha 25 | True 26 | 27 | 28 | ResizeToPowerOfTwo 29 | False 30 | 31 | 32 | MakeSquare 33 | False 34 | 35 | 36 | TextureFormat 37 | Color 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /Warcraft/Content/obj/Windows/Elven Archer.mgcontent: -------------------------------------------------------------------------------- 1 | 2 | 3 | /Users/paulomenezes/Documents/repositories/warcraft-monogame/Warcraft/Content/Elven Archer.png 4 | 2017-05-07T18:47:23-03:00 5 | /Users/paulomenezes/Documents/repositories/warcraft-monogame/Warcraft/Content/bin/Windows/Elven Archer.xnb 6 | 2017-05-13T18:41:45-03:00 7 | TextureImporter 8 | 2017-03-01T12:06:24-03:00 9 | TextureProcessor 10 | 2017-03-01T12:06:24-03:00 11 | 12 | ColorKeyColor 13 | 255,0,255,255 14 | 15 | 16 | ColorKeyEnabled 17 | True 18 | 19 | 20 | GenerateMipmaps 21 | False 22 | 23 | 24 | PremultiplyAlpha 25 | True 26 | 27 | 28 | ResizeToPowerOfTwo 29 | False 30 | 31 | 32 | MakeSquare 33 | False 34 | 35 | 36 | TextureFormat 37 | Color 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /Warcraft/Content/obj/Windows/Peasant_gold.mgcontent: -------------------------------------------------------------------------------- 1 | 2 | 3 | /Users/paulomenezes/Documents/repositories/warcraft-monogame/Warcraft/Content/Peasant_gold.png 4 | 2017-05-07T18:47:23-03:00 5 | /Users/paulomenezes/Documents/repositories/warcraft-monogame/Warcraft/Content/bin/Windows/Peasant_gold.xnb 6 | 2017-05-13T18:41:45-03:00 7 | TextureImporter 8 | 2017-03-01T12:06:24-03:00 9 | TextureProcessor 10 | 2017-03-01T12:06:24-03:00 11 | 12 | ColorKeyColor 13 | 255,0,255,255 14 | 15 | 16 | ColorKeyEnabled 17 | True 18 | 19 | 20 | GenerateMipmaps 21 | False 22 | 23 | 24 | PremultiplyAlpha 25 | True 26 | 27 | 28 | ResizeToPowerOfTwo 29 | False 30 | 31 | 32 | MakeSquare 33 | False 34 | 35 | 36 | TextureFormat 37 | Color 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /Warcraft/Content/obj/Windows/Summer Tiles.mgcontent: -------------------------------------------------------------------------------- 1 | 2 | 3 | /Users/paulomenezes/Documents/repositories/warcraft-monogame/Warcraft/Content/Summer Tiles.png 4 | 2017-05-07T18:47:23-03:00 5 | /Users/paulomenezes/Documents/repositories/warcraft-monogame/Warcraft/Content/bin/Windows/Summer Tiles.xnb 6 | 2017-05-14T19:08:49-03:00 7 | TextureImporter 8 | 2017-03-01T12:06:24-03:00 9 | TextureProcessor 10 | 2017-03-01T12:06:24-03:00 11 | 12 | ColorKeyColor 13 | 255,0,255,255 14 | 15 | 16 | ColorKeyEnabled 17 | True 18 | 19 | 20 | GenerateMipmaps 21 | False 22 | 23 | 24 | PremultiplyAlpha 25 | True 26 | 27 | 28 | ResizeToPowerOfTwo 29 | False 30 | 31 | 32 | MakeSquare 33 | False 34 | 35 | 36 | TextureFormat 37 | Color 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /Warcraft/Content/obj/Windows/Peasant_dying.mgcontent: -------------------------------------------------------------------------------- 1 | 2 | 3 | /Users/paulomenezes/Documents/repositories/warcraft-monogame/Warcraft/Content/Peasant_dying.png 4 | 2017-05-07T18:47:23-03:00 5 | /Users/paulomenezes/Documents/repositories/warcraft-monogame/Warcraft/Content/bin/Windows/Peasant_dying.xnb 6 | 2017-05-13T18:41:45-03:00 7 | TextureImporter 8 | 2017-03-01T12:06:24-03:00 9 | TextureProcessor 10 | 2017-03-01T12:06:24-03:00 11 | 12 | ColorKeyColor 13 | 255,0,255,255 14 | 15 | 16 | ColorKeyEnabled 17 | True 18 | 19 | 20 | GenerateMipmaps 21 | False 22 | 23 | 24 | PremultiplyAlpha 25 | True 26 | 27 | 28 | ResizeToPowerOfTwo 29 | False 30 | 31 | 32 | MakeSquare 33 | False 34 | 35 | 36 | TextureFormat 37 | Color 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /Warcraft/Content/obj/Windows/Peasant_walking.mgcontent: -------------------------------------------------------------------------------- 1 | 2 | 3 | /Users/paulomenezes/Documents/repositories/warcraft-monogame/Warcraft/Content/Peasant_walking.png 4 | 2017-05-07T18:47:23-03:00 5 | /Users/paulomenezes/Documents/repositories/warcraft-monogame/Warcraft/Content/bin/Windows/Peasant_walking.xnb 6 | 2017-05-14T19:08:49-03:00 7 | TextureImporter 8 | 2017-03-01T12:06:24-03:00 9 | TextureProcessor 10 | 2017-03-01T12:06:24-03:00 11 | 12 | ColorKeyColor 13 | 255,0,255,255 14 | 15 | 16 | ColorKeyEnabled 17 | True 18 | 19 | 20 | GenerateMipmaps 21 | False 22 | 23 | 24 | PremultiplyAlpha 25 | True 26 | 27 | 28 | ResizeToPowerOfTwo 29 | False 30 | 31 | 32 | MakeSquare 33 | False 34 | 35 | 36 | TextureFormat 37 | Color 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /Warcraft/Content/obj/Windows/Troll Axethrower.mgcontent: -------------------------------------------------------------------------------- 1 | 2 | 3 | /Users/paulomenezes/Documents/repositories/warcraft-monogame/Warcraft/Content/Troll Axethrower.png 4 | 2017-05-07T18:47:23-03:00 5 | /Users/paulomenezes/Documents/repositories/warcraft-monogame/Warcraft/Content/bin/Windows/Troll Axethrower.xnb 6 | 2017-05-13T18:41:45-03:00 7 | TextureImporter 8 | 2017-03-01T12:06:24-03:00 9 | TextureProcessor 10 | 2017-03-01T12:06:24-03:00 11 | 12 | ColorKeyColor 13 | 255,0,255,255 14 | 15 | 16 | ColorKeyEnabled 17 | True 18 | 19 | 20 | GenerateMipmaps 21 | False 22 | 23 | 24 | PremultiplyAlpha 25 | True 26 | 27 | 28 | ResizeToPowerOfTwo 29 | False 30 | 31 | 32 | MakeSquare 33 | False 34 | 35 | 36 | TextureFormat 37 | Color 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /Warcraft/Buildings/Humans/ChickenFarm.cs: -------------------------------------------------------------------------------- 1 | using System.Collections.Generic; 2 | using Warcraft.Buildings.Neutral; 3 | using Warcraft.Managers; 4 | using Warcraft.Util; 5 | 6 | namespace Warcraft.Buildings.Humans 7 | { 8 | class ChickenFarm : Farm 9 | { 10 | public ChickenFarm(int tileX, int tileY, ManagerMouse managerMouse, ManagerMap managerMap, ManagerUnits managerUnits) : 11 | base(tileX, tileY, 64, 64, managerMouse, managerMap, managerUnits) 12 | { 13 | information = new InformationBuilding("Chicken Farm", 400, 500, 450, Util.Units.PEASANT, 100 * Warcraft.FPS, Util.Buildings.CHICKEN_FARM); 14 | 15 | Dictionary> sprites = new Dictionary>(); 16 | List spriteBuilding = new List(); 17 | // BUILDING 18 | spriteBuilding.Add(new Sprite(576, 708, 48, 39)); 19 | spriteBuilding.Add(new Sprite(572, 836, 61, 52)); 20 | spriteBuilding.Add(new Sprite(398, 73, 63, 59)); 21 | spriteBuilding.Add(new Sprite(398, 4, 64, 64)); 22 | 23 | sprites.Add(AnimationType.WALKING, spriteBuilding); 24 | 25 | Dictionary animations = new Dictionary(); 26 | animations.Add("building", new Frame(0, 4)); 27 | 28 | this.animations = new Animation(sprites, animations, "building", width, height, false, information.BuildTime / spriteBuilding.Count); 29 | 30 | textureName = "Human Buildings (Summer)"; 31 | 32 | unselected = true; 33 | } 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /Warcraft/Content/obj/DesktopGL/Orc Buildings (Summer) .mgcontent: -------------------------------------------------------------------------------- 1 | 2 | 3 | /Users/paulomenezes/Documents/repositories/warcraft/Warcraft/Content/Orc Buildings (Summer) .png 4 | 2017-08-12T17:42:07-03:00 5 | /Users/paulomenezes/Documents/repositories/warcraft/Warcraft/Content/bin/DesktopGL/Orc Buildings (Summer) .xnb 6 | 2017-08-23T17:47:30-03:00 7 | TextureImporter 8 | 2017-03-01T12:06:24-03:00 9 | TextureProcessor 10 | 2017-03-01T12:06:24-03:00 11 | 12 | ColorKeyColor 13 | 255,0,255,255 14 | 15 | 16 | ColorKeyEnabled 17 | True 18 | 19 | 20 | GenerateMipmaps 21 | False 22 | 23 | 24 | PremultiplyAlpha 25 | True 26 | 27 | 28 | ResizeToPowerOfTwo 29 | False 30 | 31 | 32 | MakeSquare 33 | False 34 | 35 | 36 | TextureFormat 37 | Color 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /Warcraft/Content/obj/DesktopGL/Human Buildings (Summer).mgcontent: -------------------------------------------------------------------------------- 1 | 2 | 3 | /Users/paulomenezes/Documents/repositories/warcraft/Warcraft/Content/Human Buildings (Summer).png 4 | 2017-05-07T18:47:23-03:00 5 | /Users/paulomenezes/Documents/repositories/warcraft/Warcraft/Content/bin/DesktopGL/Human Buildings (Summer).xnb 6 | 2017-08-23T17:47:30-03:00 7 | TextureImporter 8 | 2017-03-01T12:06:24-03:00 9 | TextureProcessor 10 | 2017-03-01T12:06:24-03:00 11 | 12 | ColorKeyColor 13 | 255,0,255,255 14 | 15 | 16 | ColorKeyEnabled 17 | True 18 | 19 | 20 | GenerateMipmaps 21 | False 22 | 23 | 24 | PremultiplyAlpha 25 | True 26 | 27 | 28 | ResizeToPowerOfTwo 29 | False 30 | 31 | 32 | MakeSquare 33 | False 34 | 35 | 36 | TextureFormat 37 | Color 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /Warcraft/Content/obj/DesktopGL/Daemon.mgcontent: -------------------------------------------------------------------------------- 1 | 2 | 3 | c:/users/phgm/documents/visual studio 2015/Projects/Game2/Game2/Content/Daemon.png 4 | 2017-05-29T08:05:27.3864269-03:00 5 | c:/users/phgm/documents/visual studio 2015/Projects/Game2/Game2/Content/bin/DesktopGL/Daemon.xnb 6 | 2017-05-29T08:07:11.5063495-03:00 7 | TextureImporter 8 | 2017-03-01T12:05:36-03:00 9 | TextureProcessor 10 | 2017-03-01T12:05:36-03:00 11 | 12 | ColorKeyColor 13 | 255,0,255,255 14 | 15 | 16 | ColorKeyEnabled 17 | True 18 | 19 | 20 | GenerateMipmaps 21 | False 22 | 23 | 24 | PremultiplyAlpha 25 | True 26 | 27 | 28 | ResizeToPowerOfTwo 29 | False 30 | 31 | 32 | MakeSquare 33 | False 34 | 35 | 36 | TextureFormat 37 | Color 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /Warcraft/Content/obj/DesktopGL/Misc..mgcontent: -------------------------------------------------------------------------------- 1 | 2 | 3 | c:/users/phgm/documents/visual studio 2015/Projects/Game2/Game2/Content/Misc..png 4 | 2017-05-29T08:05:35.4342553-03:00 5 | c:/users/phgm/documents/visual studio 2015/Projects/Game2/Game2/Content/bin/DesktopGL/Misc..xnb 6 | 2017-05-29T08:07:11.8172966-03:00 7 | TextureImporter 8 | 2017-03-01T12:05:36-03:00 9 | TextureProcessor 10 | 2017-03-01T12:05:36-03:00 11 | 12 | ColorKeyColor 13 | 255,0,255,255 14 | 15 | 16 | ColorKeyEnabled 17 | True 18 | 19 | 20 | GenerateMipmaps 21 | False 22 | 23 | 24 | PremultiplyAlpha 25 | True 26 | 27 | 28 | ResizeToPowerOfTwo 29 | False 30 | 31 | 32 | MakeSquare 33 | False 34 | 35 | 36 | TextureFormat 37 | Color 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /Warcraft/Units/InformationUnit.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using Warcraft.Util; 3 | 4 | namespace Warcraft.Units 5 | { 6 | class InformationUnit : Information 7 | { 8 | public Util.Buildings ProduceAt; 9 | 10 | public Race Race; 11 | public Faction Faction; 12 | 13 | public int Damage; 14 | public int Piercing; 15 | 16 | public int Armor; 17 | public int Sight; 18 | public int MovementSpeed; 19 | 20 | public int Range; 21 | public Util.Units Type; 22 | 23 | public InformationUnit(string name, Race race, Faction faction, float hitPoints, int armor, int sight, int movementSpeed, 24 | int costGold, int costFood, Util.Buildings produceAt, int buildTime, int damage, int range, Util.Units type, int piercing) 25 | { 26 | Name = name; 27 | 28 | Race = race; 29 | Faction = faction; 30 | 31 | HitPoints = hitPoints; 32 | HitPointsTotal = HitPoints; 33 | Armor = armor; 34 | Sight = sight; 35 | MovementSpeed = movementSpeed; 36 | Range = range; 37 | 38 | CostGold = costGold; 39 | CostFood = costFood; 40 | ProduceAt = produceAt; 41 | BuildTime = buildTime; 42 | 43 | Damage = damage; 44 | Piercing = piercing; 45 | 46 | Type = type; 47 | } 48 | 49 | public override string ToString() 50 | { 51 | return Type + "," + HitPointsTotal + "," + Armor + "," + Sight + "," + Damage + "\n"; 52 | } 53 | } 54 | } 55 | -------------------------------------------------------------------------------- /Warcraft/Content/obj/DesktopGL/Corpses.mgcontent: -------------------------------------------------------------------------------- 1 | 2 | 3 | c:/users/phgm/documents/visual studio 2015/Projects/Game2/Game2/Content/Corpses.png 4 | 2017-05-29T08:05:19.0007504-03:00 5 | c:/users/phgm/documents/visual studio 2015/Projects/Game2/Game2/Content/bin/DesktopGL/Corpses.xnb 6 | 2017-05-29T08:07:11.4092872-03:00 7 | TextureImporter 8 | 2017-03-01T12:05:36-03:00 9 | TextureProcessor 10 | 2017-03-01T12:05:36-03:00 11 | 12 | ColorKeyColor 13 | 255,0,255,255 14 | 15 | 16 | ColorKeyEnabled 17 | True 18 | 19 | 20 | GenerateMipmaps 21 | False 22 | 23 | 24 | PremultiplyAlpha 25 | True 26 | 27 | 28 | ResizeToPowerOfTwo 29 | False 30 | 31 | 32 | MakeSquare 33 | False 34 | 35 | 36 | TextureFormat 37 | Color 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /Warcraft/Content/obj/Windows/Human Buildings (Summer).mgcontent: -------------------------------------------------------------------------------- 1 | 2 | 3 | /Users/paulomenezes/Documents/repositories/warcraft-monogame/Warcraft/Content/Human Buildings (Summer).png 4 | 2017-05-07T18:47:23-03:00 5 | /Users/paulomenezes/Documents/repositories/warcraft-monogame/Warcraft/Content/bin/Windows/Human Buildings (Summer).xnb 6 | 2017-05-13T18:41:45-03:00 7 | TextureImporter 8 | 2017-03-01T12:06:24-03:00 9 | TextureProcessor 10 | 2017-03-01T12:06:24-03:00 11 | 12 | ColorKeyColor 13 | 255,0,255,255 14 | 15 | 16 | ColorKeyEnabled 17 | True 18 | 19 | 20 | GenerateMipmaps 21 | False 22 | 23 | 24 | PremultiplyAlpha 25 | True 26 | 27 | 28 | ResizeToPowerOfTwo 29 | False 30 | 31 | 32 | MakeSquare 33 | False 34 | 35 | 36 | TextureFormat 37 | Color 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /Warcraft/Content/obj/DesktopGL/Critters.mgcontent: -------------------------------------------------------------------------------- 1 | 2 | 3 | c:/users/phgm/documents/visual studio 2015/Projects/Game2/Game2/Content/Critters.png 4 | 2017-05-29T08:05:23.0569354-03:00 5 | c:/users/phgm/documents/visual studio 2015/Projects/Game2/Game2/Content/bin/DesktopGL/Critters.xnb 6 | 2017-05-29T08:07:11.4362997-03:00 7 | TextureImporter 8 | 2017-03-01T12:05:36-03:00 9 | TextureProcessor 10 | 2017-03-01T12:05:36-03:00 11 | 12 | ColorKeyColor 13 | 255,0,255,255 14 | 15 | 16 | ColorKeyEnabled 17 | True 18 | 19 | 20 | GenerateMipmaps 21 | False 22 | 23 | 24 | PremultiplyAlpha 25 | True 26 | 27 | 28 | ResizeToPowerOfTwo 29 | False 30 | 31 | 32 | MakeSquare 33 | False 34 | 35 | 36 | TextureFormat 37 | Color 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /Warcraft/Content/obj/DesktopGL/Orcs/Ogre.mgcontent: -------------------------------------------------------------------------------- 1 | 2 | 3 | c:/users/phgm/documents/visual studio 2015/Projects/Game2/Game2/Content/Orcs/Ogre.png 4 | 2017-05-29T08:04:01.4843258-03:00 5 | c:/users/phgm/documents/visual studio 2015/Projects/Game2/Game2/Content/bin/DesktopGL/Orcs/Ogre.xnb 6 | 2017-05-29T08:07:13.51796-03:00 7 | TextureImporter 8 | 2017-03-01T12:05:36-03:00 9 | TextureProcessor 10 | 2017-03-01T12:05:36-03:00 11 | 12 | ColorKeyColor 13 | 255,0,255,255 14 | 15 | 16 | ColorKeyEnabled 17 | True 18 | 19 | 20 | GenerateMipmaps 21 | False 22 | 23 | 24 | PremultiplyAlpha 25 | True 26 | 27 | 28 | ResizeToPowerOfTwo 29 | False 30 | 31 | 32 | MakeSquare 33 | False 34 | 35 | 36 | TextureFormat 37 | Color 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /Warcraft/Content/obj/DesktopGL/Orcs/Peon.mgcontent: -------------------------------------------------------------------------------- 1 | 2 | 3 | c:/users/phgm/documents/visual studio 2015/Projects/Game2/Game2/Content/Orcs/Peon.png 4 | 2017-05-29T08:04:51.1628565-03:00 5 | c:/users/phgm/documents/visual studio 2015/Projects/Game2/Game2/Content/bin/DesktopGL/Orcs/Peon.xnb 6 | 2017-05-29T08:07:13.7866508-03:00 7 | TextureImporter 8 | 2017-03-01T12:05:36-03:00 9 | TextureProcessor 10 | 2017-03-01T12:05:36-03:00 11 | 12 | ColorKeyColor 13 | 255,0,255,255 14 | 15 | 16 | ColorKeyEnabled 17 | True 18 | 19 | 20 | GenerateMipmaps 21 | False 22 | 23 | 24 | PremultiplyAlpha 25 | True 26 | 27 | 28 | ResizeToPowerOfTwo 29 | False 30 | 31 | 32 | MakeSquare 33 | False 34 | 35 | 36 | TextureFormat 37 | Color 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /Warcraft/Content/obj/DesktopGL/Army Colors.mgcontent: -------------------------------------------------------------------------------- 1 | 2 | 3 | c:/users/phgm/documents/visual studio 2015/Projects/Game2/Game2/Content/Army Colors.png 4 | 2017-05-29T08:05:13.0328606-03:00 5 | c:/users/phgm/documents/visual studio 2015/Projects/Game2/Game2/Content/bin/DesktopGL/Army Colors.xnb 6 | 2017-05-29T08:07:11.3637483-03:00 7 | TextureImporter 8 | 2017-03-01T12:05:36-03:00 9 | TextureProcessor 10 | 2017-03-01T12:05:36-03:00 11 | 12 | ColorKeyColor 13 | 255,0,255,255 14 | 15 | 16 | ColorKeyEnabled 17 | True 18 | 19 | 20 | GenerateMipmaps 21 | False 22 | 23 | 24 | PremultiplyAlpha 25 | True 26 | 27 | 28 | ResizeToPowerOfTwo 29 | False 30 | 31 | 32 | MakeSquare 33 | False 34 | 35 | 36 | TextureFormat 37 | Color 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /Warcraft/Content/obj/DesktopGL/Humans/Mage.mgcontent: -------------------------------------------------------------------------------- 1 | 2 | 3 | c:/users/phgm/documents/visual studio 2015/Projects/Game2/Game2/Content/Humans/Mage.png 4 | 2017-05-29T08:03:01.8122385-03:00 5 | c:/users/phgm/documents/visual studio 2015/Projects/Game2/Game2/Content/bin/DesktopGL/Humans/Mage.xnb 6 | 2017-05-29T08:07:13.0331157-03:00 7 | TextureImporter 8 | 2017-03-01T12:05:36-03:00 9 | TextureProcessor 10 | 2017-03-01T12:05:36-03:00 11 | 12 | ColorKeyColor 13 | 255,0,255,255 14 | 15 | 16 | ColorKeyEnabled 17 | True 18 | 19 | 20 | GenerateMipmaps 21 | False 22 | 23 | 24 | PremultiplyAlpha 25 | True 26 | 27 | 28 | ResizeToPowerOfTwo 29 | False 30 | 31 | 32 | MakeSquare 33 | False 34 | 35 | 36 | TextureFormat 37 | Color 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /Warcraft/Content/obj/DesktopGL/Orcs/Dragon.mgcontent: -------------------------------------------------------------------------------- 1 | 2 | 3 | c:/users/phgm/documents/visual studio 2015/Projects/Game2/Game2/Content/Orcs/Dragon.png 4 | 2017-05-29T08:03:52.0981834-03:00 5 | c:/users/phgm/documents/visual studio 2015/Projects/Game2/Game2/Content/bin/DesktopGL/Orcs/Dragon.xnb 6 | 2017-05-29T08:07:13.2867956-03:00 7 | TextureImporter 8 | 2017-03-01T12:05:36-03:00 9 | TextureProcessor 10 | 2017-03-01T12:05:36-03:00 11 | 12 | ColorKeyColor 13 | 255,0,255,255 14 | 15 | 16 | ColorKeyEnabled 17 | True 18 | 19 | 20 | GenerateMipmaps 21 | False 22 | 23 | 24 | PremultiplyAlpha 25 | True 26 | 27 | 28 | ResizeToPowerOfTwo 29 | False 30 | 31 | 32 | MakeSquare 33 | False 34 | 35 | 36 | TextureFormat 37 | Color 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /Warcraft/Content/obj/DesktopGL/Orcs/Grunt.mgcontent: -------------------------------------------------------------------------------- 1 | 2 | 3 | c:/users/phgm/documents/visual studio 2015/Projects/Game2/Game2/Content/Orcs/Grunt.png 4 | 2017-05-29T08:04:06.2029206-03:00 5 | c:/users/phgm/documents/visual studio 2015/Projects/Game2/Game2/Content/bin/DesktopGL/Orcs/Grunt.xnb 6 | 2017-05-29T08:07:13.4344009-03:00 7 | TextureImporter 8 | 2017-03-01T12:05:36-03:00 9 | TextureProcessor 10 | 2017-03-01T12:05:36-03:00 11 | 12 | ColorKeyColor 13 | 255,0,255,255 14 | 15 | 16 | ColorKeyEnabled 17 | True 18 | 19 | 20 | GenerateMipmaps 21 | False 22 | 23 | 24 | PremultiplyAlpha 25 | True 26 | 27 | 28 | ResizeToPowerOfTwo 29 | False 30 | 31 | 32 | MakeSquare 33 | False 34 | 35 | 36 | TextureFormat 37 | Color 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /Warcraft/Content/obj/DesktopGL/Orcs/Catapult.mgcontent: -------------------------------------------------------------------------------- 1 | 2 | 3 | c:/users/phgm/documents/visual studio 2015/Projects/Game2/Game2/Content/Orcs/Catapult.png 4 | 2017-05-29T08:03:41.9772378-03:00 5 | c:/users/phgm/documents/visual studio 2015/Projects/Game2/Game2/Content/bin/DesktopGL/Orcs/Catapult.xnb 6 | 2017-05-29T08:07:13.185724-03:00 7 | TextureImporter 8 | 2017-03-01T12:05:36-03:00 9 | TextureProcessor 10 | 2017-03-01T12:05:36-03:00 11 | 12 | ColorKeyColor 13 | 255,0,255,255 14 | 15 | 16 | ColorKeyEnabled 17 | True 18 | 19 | 20 | GenerateMipmaps 21 | False 22 | 23 | 24 | PremultiplyAlpha 25 | True 26 | 27 | 28 | ResizeToPowerOfTwo 29 | False 30 | 31 | 32 | MakeSquare 33 | False 34 | 35 | 36 | TextureFormat 37 | Color 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /Warcraft/Content/obj/DesktopGL/Winter Tiles.mgcontent: -------------------------------------------------------------------------------- 1 | 2 | 3 | c:/users/phgm/documents/visual studio 2015/Projects/Game2/Game2/Content/Winter Tiles.png 4 | 2017-05-29T08:06:02.5089682-03:00 5 | c:/users/phgm/documents/visual studio 2015/Projects/Game2/Game2/Content/bin/DesktopGL/Winter Tiles.xnb 6 | 2017-05-29T08:07:12.2586096-03:00 7 | TextureImporter 8 | 2017-03-01T12:05:36-03:00 9 | TextureProcessor 10 | 2017-03-01T12:05:36-03:00 11 | 12 | ColorKeyColor 13 | 255,0,255,255 14 | 15 | 16 | ColorKeyEnabled 17 | True 18 | 19 | 20 | GenerateMipmaps 21 | False 22 | 23 | 24 | PremultiplyAlpha 25 | True 26 | 27 | 28 | ResizeToPowerOfTwo 29 | False 30 | 31 | 32 | MakeSquare 33 | False 34 | 35 | 36 | TextureFormat 37 | Color 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /Warcraft/Content/obj/DesktopGL/Humans/Footman.mgcontent: -------------------------------------------------------------------------------- 1 | 2 | 3 | c:/users/phgm/documents/visual studio 2015/Projects/Game2/Game2/Content/Humans/Footman.png 4 | 2017-05-29T08:01:37.6904605-03:00 5 | c:/users/phgm/documents/visual studio 2015/Projects/Game2/Game2/Content/bin/DesktopGL/Humans/Footman.xnb 6 | 2017-05-29T08:07:12.5308025-03:00 7 | TextureImporter 8 | 2017-03-01T12:05:36-03:00 9 | TextureProcessor 10 | 2017-03-01T12:05:36-03:00 11 | 12 | ColorKeyColor 13 | 255,0,255,255 14 | 15 | 16 | ColorKeyEnabled 17 | True 18 | 19 | 20 | GenerateMipmaps 21 | False 22 | 23 | 24 | PremultiplyAlpha 25 | True 26 | 27 | 28 | ResizeToPowerOfTwo 29 | False 30 | 31 | 32 | MakeSquare 33 | False 34 | 35 | 36 | TextureFormat 37 | Color 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /Warcraft/Content/obj/DesktopGL/Humans/Knight.mgcontent: -------------------------------------------------------------------------------- 1 | 2 | 3 | c:/users/phgm/documents/visual studio 2015/Projects/Game2/Game2/Content/Humans/Knight.png 4 | 2017-05-29T08:02:54.6029499-03:00 5 | c:/users/phgm/documents/visual studio 2015/Projects/Game2/Game2/Content/bin/DesktopGL/Humans/Knight.xnb 6 | 2017-05-29T08:07:12.9750744-03:00 7 | TextureImporter 8 | 2017-03-01T12:05:36-03:00 9 | TextureProcessor 10 | 2017-03-01T12:05:36-03:00 11 | 12 | ColorKeyColor 13 | 255,0,255,255 14 | 15 | 16 | ColorKeyEnabled 17 | True 18 | 19 | 20 | GenerateMipmaps 21 | False 22 | 23 | 24 | PremultiplyAlpha 25 | True 26 | 27 | 28 | ResizeToPowerOfTwo 29 | False 30 | 31 | 32 | MakeSquare 33 | False 34 | 35 | 36 | TextureFormat 37 | Color 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /Warcraft/Content/obj/DesktopGL/Humans/Peasant.mgcontent: -------------------------------------------------------------------------------- 1 | 2 | 3 | c:/users/phgm/documents/visual studio 2015/Projects/Game2/Game2/Content/Humans/Peasant.png 4 | 2017-05-29T08:03:08.7469515-03:00 5 | c:/users/phgm/documents/visual studio 2015/Projects/Game2/Game2/Content/bin/DesktopGL/Humans/Peasant.xnb 6 | 2017-05-29T08:07:13.0811494-03:00 7 | TextureImporter 8 | 2017-03-01T12:05:36-03:00 9 | TextureProcessor 10 | 2017-03-01T12:05:36-03:00 11 | 12 | ColorKeyColor 13 | 255,0,255,255 14 | 15 | 16 | ColorKeyEnabled 17 | True 18 | 19 | 20 | GenerateMipmaps 21 | False 22 | 23 | 24 | PremultiplyAlpha 25 | True 26 | 27 | 28 | ResizeToPowerOfTwo 29 | False 30 | 31 | 32 | MakeSquare 33 | False 34 | 35 | 36 | TextureFormat 37 | Color 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /Warcraft/Content/obj/DesktopGL/Humans/Ballista.mgcontent: -------------------------------------------------------------------------------- 1 | 2 | 3 | c:/users/phgm/documents/visual studio 2015/Projects/Game2/Game2/Content/Humans/Ballista.png 4 | 2017-05-29T08:00:43.265533-03:00 5 | c:/users/phgm/documents/visual studio 2015/Projects/Game2/Game2/Content/bin/DesktopGL/Humans/Ballista.xnb 6 | 2017-05-29T08:07:12.2961367-03:00 7 | TextureImporter 8 | 2017-03-01T12:05:36-03:00 9 | TextureProcessor 10 | 2017-03-01T12:05:36-03:00 11 | 12 | ColorKeyColor 13 | 255,0,255,255 14 | 15 | 16 | ColorKeyEnabled 17 | True 18 | 19 | 20 | GenerateMipmaps 21 | False 22 | 23 | 24 | PremultiplyAlpha 25 | True 26 | 27 | 28 | ResizeToPowerOfTwo 29 | False 30 | 31 | 32 | MakeSquare 33 | False 34 | 35 | 36 | TextureFormat 37 | Color 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /Warcraft/Content/obj/DesktopGL/Wasteland Tiles.mgcontent: -------------------------------------------------------------------------------- 1 | 2 | 3 | c:/users/phgm/documents/visual studio 2015/Projects/Game2/Game2/Content/Wasteland Tiles.png 4 | 2017-05-29T08:05:57.1591619-03:00 5 | c:/users/phgm/documents/visual studio 2015/Projects/Game2/Game2/Content/bin/DesktopGL/Wasteland Tiles.xnb 6 | 2017-05-29T08:07:12.148531-03:00 7 | TextureImporter 8 | 2017-03-01T12:05:36-03:00 9 | TextureProcessor 10 | 2017-03-01T12:05:36-03:00 11 | 12 | ColorKeyColor 13 | 255,0,255,255 14 | 15 | 16 | ColorKeyEnabled 17 | True 18 | 19 | 20 | GenerateMipmaps 21 | False 22 | 23 | 24 | PremultiplyAlpha 25 | True 26 | 27 | 28 | ResizeToPowerOfTwo 29 | False 30 | 31 | 32 | MakeSquare 33 | False 34 | 35 | 36 | TextureFormat 37 | Color 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /Warcraft/Content/obj/DesktopGL/Humans/Battleship.mgcontent: -------------------------------------------------------------------------------- 1 | 2 | 3 | c:/users/phgm/documents/visual studio 2015/Projects/Game2/Game2/Content/Humans/Battleship.png 4 | 2017-05-29T08:01:08.4583142-03:00 5 | c:/users/phgm/documents/visual studio 2015/Projects/Game2/Game2/Content/bin/DesktopGL/Humans/Battleship.xnb 6 | 2017-05-29T08:07:12.3356641-03:00 7 | TextureImporter 8 | 2017-03-01T12:05:36-03:00 9 | TextureProcessor 10 | 2017-03-01T12:05:36-03:00 11 | 12 | ColorKeyColor 13 | 255,0,255,255 14 | 15 | 16 | ColorKeyEnabled 17 | True 18 | 19 | 20 | GenerateMipmaps 21 | False 22 | 23 | 24 | PremultiplyAlpha 25 | True 26 | 27 | 28 | ResizeToPowerOfTwo 29 | False 30 | 31 | 32 | MakeSquare 33 | False 34 | 35 | 36 | TextureFormat 37 | Color 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /Warcraft/Content/obj/DesktopGL/Orcs/Death Knight.mgcontent: -------------------------------------------------------------------------------- 1 | 2 | 3 | c:/users/phgm/documents/visual studio 2015/Projects/Game2/Game2/Content/Orcs/Death Knight.png 4 | 2017-05-29T08:03:48.0112498-03:00 5 | c:/users/phgm/documents/visual studio 2015/Projects/Game2/Game2/Content/bin/DesktopGL/Orcs/Death Knight.xnb 6 | 2017-05-29T08:07:13.2312564-03:00 7 | TextureImporter 8 | 2017-03-01T12:05:36-03:00 9 | TextureProcessor 10 | 2017-03-01T12:05:36-03:00 11 | 12 | ColorKeyColor 13 | 255,0,255,255 14 | 15 | 16 | ColorKeyEnabled 17 | True 18 | 19 | 20 | GenerateMipmaps 21 | False 22 | 23 | 24 | PremultiplyAlpha 25 | True 26 | 27 | 28 | ResizeToPowerOfTwo 29 | False 30 | 31 | 32 | MakeSquare 33 | False 34 | 35 | 36 | TextureFormat 37 | Color 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /Warcraft/Content/obj/DesktopGL/Orcs/Giant Turtle.mgcontent: -------------------------------------------------------------------------------- 1 | 2 | 3 | c:/users/phgm/documents/visual studio 2015/Projects/Game2/Game2/Content/Orcs/Giant Turtle.png 4 | 2017-05-29T08:03:56.674037-03:00 5 | c:/users/phgm/documents/visual studio 2015/Projects/Game2/Game2/Content/bin/DesktopGL/Orcs/Giant Turtle.xnb 6 | 2017-05-29T08:07:13.3163205-03:00 7 | TextureImporter 8 | 2017-03-01T12:05:36-03:00 9 | TextureProcessor 10 | 2017-03-01T12:05:36-03:00 11 | 12 | ColorKeyColor 13 | 255,0,255,255 14 | 15 | 16 | ColorKeyEnabled 17 | True 18 | 19 | 20 | GenerateMipmaps 21 | False 22 | 23 | 24 | PremultiplyAlpha 25 | True 26 | 27 | 28 | ResizeToPowerOfTwo 29 | False 30 | 31 | 32 | MakeSquare 33 | False 34 | 35 | 36 | TextureFormat 37 | Color 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /Warcraft/Content/obj/DesktopGL/Humans/Elven Archer.mgcontent: -------------------------------------------------------------------------------- 1 | 2 | 3 | c:/users/phgm/documents/visual studio 2015/Projects/Game2/Game2/Content/Humans/Elven Archer.png 4 | 2017-05-29T08:01:25.1627808-03:00 5 | c:/users/phgm/documents/visual studio 2015/Projects/Game2/Game2/Content/bin/DesktopGL/Humans/Elven Archer.xnb 6 | 2017-05-29T08:07:12.42873-03:00 7 | TextureImporter 8 | 2017-03-01T12:05:36-03:00 9 | TextureProcessor 10 | 2017-03-01T12:05:36-03:00 11 | 12 | ColorKeyColor 13 | 255,0,255,255 14 | 15 | 16 | ColorKeyEnabled 17 | True 18 | 19 | 20 | GenerateMipmaps 21 | False 22 | 23 | 24 | PremultiplyAlpha 25 | True 26 | 27 | 28 | ResizeToPowerOfTwo 29 | False 30 | 31 | 32 | MakeSquare 33 | False 34 | 35 | 36 | TextureFormat 37 | Color 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /Warcraft/Content/obj/DesktopGL/Magic and Missiles.mgcontent: -------------------------------------------------------------------------------- 1 | 2 | 3 | c:/users/phgm/documents/visual studio 2015/Projects/Game2/Game2/Content/Magic and Missiles.png 4 | 2017-05-29T08:05:43.4504784-03:00 5 | c:/users/phgm/documents/visual studio 2015/Projects/Game2/Game2/Content/bin/DesktopGL/Magic and Missiles.xnb 6 | 2017-05-29T08:07:11.7562535-03:00 7 | TextureImporter 8 | 2017-03-01T12:05:36-03:00 9 | TextureProcessor 10 | 2017-03-01T12:05:36-03:00 11 | 12 | ColorKeyColor 13 | 255,0,255,255 14 | 15 | 16 | ColorKeyEnabled 17 | True 18 | 19 | 20 | GenerateMipmaps 21 | False 22 | 23 | 24 | PremultiplyAlpha 25 | True 26 | 27 | 28 | ResizeToPowerOfTwo 29 | False 30 | 31 | 32 | MakeSquare 33 | False 34 | 35 | 36 | TextureFormat 37 | Color 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /Warcraft/Content/obj/DesktopGL/Orcs/Goblin Sappers.mgcontent: -------------------------------------------------------------------------------- 1 | 2 | 3 | c:/users/phgm/documents/visual studio 2015/Projects/Game2/Game2/Content/Orcs/Goblin Sappers.png 4 | 2017-05-29T08:04:14.9786439-03:00 5 | c:/users/phgm/documents/visual studio 2015/Projects/Game2/Game2/Content/bin/DesktopGL/Orcs/Goblin Sappers.xnb 6 | 2017-05-29T08:07:13.3468382-03:00 7 | TextureImporter 8 | 2017-03-01T12:05:36-03:00 9 | TextureProcessor 10 | 2017-03-01T12:05:36-03:00 11 | 12 | ColorKeyColor 13 | 255,0,255,255 14 | 15 | 16 | ColorKeyEnabled 17 | True 18 | 19 | 20 | GenerateMipmaps 21 | False 22 | 23 | 24 | PremultiplyAlpha 25 | True 26 | 27 | 28 | ResizeToPowerOfTwo 29 | False 30 | 31 | 32 | MakeSquare 33 | False 34 | 35 | 36 | TextureFormat 37 | Color 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /Warcraft/Content/obj/DesktopGL/Orcs/Orc Oil Tanker.mgcontent: -------------------------------------------------------------------------------- 1 | 2 | 3 | c:/users/phgm/documents/visual studio 2015/Projects/Game2/Game2/Content/Orcs/Orc Oil Tanker.png 4 | 2017-05-29T08:04:37.1462867-03:00 5 | c:/users/phgm/documents/visual studio 2015/Projects/Game2/Game2/Content/bin/DesktopGL/Orcs/Orc Oil Tanker.xnb 6 | 2017-05-29T08:07:13.7070941-03:00 7 | TextureImporter 8 | 2017-03-01T12:05:36-03:00 9 | TextureProcessor 10 | 2017-03-01T12:05:36-03:00 11 | 12 | ColorKeyColor 13 | 255,0,255,255 14 | 15 | 16 | ColorKeyEnabled 17 | True 18 | 19 | 20 | GenerateMipmaps 21 | False 22 | 23 | 24 | PremultiplyAlpha 25 | True 26 | 27 | 28 | ResizeToPowerOfTwo 29 | False 30 | 31 | 32 | MakeSquare 33 | False 34 | 35 | 36 | TextureFormat 37 | Color 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /Warcraft/Content/obj/DesktopGL/Orcs/Orc Transport.mgcontent: -------------------------------------------------------------------------------- 1 | 2 | 3 | c:/users/phgm/documents/visual studio 2015/Projects/Game2/Game2/Content/Orcs/Orc Transport.png 4 | 2017-05-29T08:04:55.6805963-03:00 5 | c:/users/phgm/documents/visual studio 2015/Projects/Game2/Game2/Content/bin/DesktopGL/Orcs/Orc Transport.xnb 6 | 2017-05-29T08:07:13.7316119-03:00 7 | TextureImporter 8 | 2017-03-01T12:05:36-03:00 9 | TextureProcessor 10 | 2017-03-01T12:05:36-03:00 11 | 12 | ColorKeyColor 13 | 255,0,255,255 14 | 15 | 16 | ColorKeyEnabled 17 | True 18 | 19 | 20 | GenerateMipmaps 21 | False 22 | 23 | 24 | PremultiplyAlpha 25 | True 26 | 27 | 28 | ResizeToPowerOfTwo 29 | False 30 | 31 | 32 | MakeSquare 33 | False 34 | 35 | 36 | TextureFormat 37 | Color 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /Warcraft/Content/obj/DesktopGL/Humans/Gryphon Rider.mgcontent: -------------------------------------------------------------------------------- 1 | 2 | 3 | c:/users/phgm/documents/visual studio 2015/Projects/Game2/Game2/Content/Humans/Gryphon Rider.png 4 | 2017-05-29T08:02:09.378896-03:00 5 | c:/users/phgm/documents/visual studio 2015/Projects/Game2/Game2/Content/bin/DesktopGL/Humans/Gryphon Rider.xnb 6 | 2017-05-29T08:07:12.6718589-03:00 7 | TextureImporter 8 | 2017-03-01T12:05:36-03:00 9 | TextureProcessor 10 | 2017-03-01T12:05:36-03:00 11 | 12 | ColorKeyColor 13 | 255,0,255,255 14 | 15 | 16 | ColorKeyEnabled 17 | True 18 | 19 | 20 | GenerateMipmaps 21 | False 22 | 23 | 24 | PremultiplyAlpha 25 | True 26 | 27 | 28 | ResizeToPowerOfTwo 29 | False 30 | 31 | 32 | MakeSquare 33 | False 34 | 35 | 36 | TextureFormat 37 | Color 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /Warcraft/Content/obj/DesktopGL/Orcs/Goblin Zeppelin.mgcontent: -------------------------------------------------------------------------------- 1 | 2 | 3 | c:/users/phgm/documents/visual studio 2015/Projects/Game2/Game2/Content/Orcs/Goblin Zeppelin.png 4 | 2017-05-29T08:04:10.7697981-03:00 5 | c:/users/phgm/documents/visual studio 2015/Projects/Game2/Game2/Content/bin/DesktopGL/Orcs/Goblin Zeppelin.xnb 6 | 2017-05-29T08:07:13.3733574-03:00 7 | TextureImporter 8 | 2017-03-01T12:05:36-03:00 9 | TextureProcessor 10 | 2017-03-01T12:05:36-03:00 11 | 12 | ColorKeyColor 13 | 255,0,255,255 14 | 15 | 16 | ColorKeyEnabled 17 | True 18 | 19 | 20 | GenerateMipmaps 21 | False 22 | 23 | 24 | PremultiplyAlpha 25 | True 26 | 27 | 28 | ResizeToPowerOfTwo 29 | False 30 | 31 | 32 | MakeSquare 33 | False 34 | 35 | 36 | TextureFormat 37 | Color 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /Warcraft/Content/obj/DesktopGL/Orcs/Ogre Juggernaut.mgcontent: -------------------------------------------------------------------------------- 1 | 2 | 3 | c:/users/phgm/documents/visual studio 2015/Projects/Game2/Game2/Content/Orcs/Ogre Juggernaut.png 4 | 2017-05-29T08:04:19.2108104-03:00 5 | c:/users/phgm/documents/visual studio 2015/Projects/Game2/Game2/Content/bin/DesktopGL/Orcs/Ogre Juggernaut.xnb 6 | 2017-05-29T08:07:13.4664233-03:00 7 | TextureImporter 8 | 2017-03-01T12:05:36-03:00 9 | TextureProcessor 10 | 2017-03-01T12:05:36-03:00 11 | 12 | ColorKeyColor 13 | 255,0,255,255 14 | 15 | 16 | ColorKeyEnabled 17 | True 18 | 19 | 20 | GenerateMipmaps 21 | False 22 | 23 | 24 | PremultiplyAlpha 25 | True 26 | 27 | 28 | ResizeToPowerOfTwo 29 | False 30 | 31 | 32 | MakeSquare 33 | False 34 | 35 | 36 | TextureFormat 37 | Color 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /Warcraft/Content/obj/DesktopGL/Orcs/Troll Axethrower.mgcontent: -------------------------------------------------------------------------------- 1 | 2 | 3 | c:/users/phgm/documents/visual studio 2015/Projects/Game2/Game2/Content/Orcs/Troll Axethrower.png 4 | 2017-05-29T08:04:45.9545676-03:00 5 | c:/users/phgm/documents/visual studio 2015/Projects/Game2/Game2/Content/bin/DesktopGL/Orcs/Troll Axethrower.xnb 6 | 2017-05-29T08:07:13.833684-03:00 7 | TextureImporter 8 | 2017-03-01T12:05:36-03:00 9 | TextureProcessor 10 | 2017-03-01T12:05:36-03:00 11 | 12 | ColorKeyColor 13 | 255,0,255,255 14 | 15 | 16 | ColorKeyEnabled 17 | True 18 | 19 | 20 | GenerateMipmaps 21 | False 22 | 23 | 24 | PremultiplyAlpha 25 | True 26 | 27 | 28 | ResizeToPowerOfTwo 29 | False 30 | 31 | 32 | MakeSquare 33 | False 34 | 35 | 36 | TextureFormat 37 | Color 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /Warcraft/Content/obj/DesktopGL/Orcs/Troll Destroyer.mgcontent: -------------------------------------------------------------------------------- 1 | 2 | 3 | c:/users/phgm/documents/visual studio 2015/Projects/Game2/Game2/Content/Orcs/Troll Destroyer.png 4 | 2017-05-29T08:04:41.6265579-03:00 5 | c:/users/phgm/documents/visual studio 2015/Projects/Game2/Game2/Content/bin/DesktopGL/Orcs/Troll Destroyer.xnb 6 | 2017-05-29T08:07:13.8617039-03:00 7 | TextureImporter 8 | 2017-03-01T12:05:36-03:00 9 | TextureProcessor 10 | 2017-03-01T12:05:36-03:00 11 | 12 | ColorKeyColor 13 | 255,0,255,255 14 | 15 | 16 | ColorKeyEnabled 17 | True 18 | 19 | 20 | GenerateMipmaps 21 | False 22 | 23 | 24 | PremultiplyAlpha 25 | True 26 | 27 | 28 | ResizeToPowerOfTwo 29 | False 30 | 31 | 32 | MakeSquare 33 | False 34 | 35 | 36 | TextureFormat 37 | Color 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /Warcraft/Content/obj/DesktopGL/Humans/Elven Destroyer.mgcontent: -------------------------------------------------------------------------------- 1 | 2 | 3 | c:/users/phgm/documents/visual studio 2015/Projects/Game2/Game2/Content/Humans/Elven Destroyer.png 4 | 2017-05-29T08:01:31.8581462-03:00 5 | c:/users/phgm/documents/visual studio 2015/Projects/Game2/Game2/Content/bin/DesktopGL/Humans/Elven Destroyer.xnb 6 | 2017-05-29T08:07:12.486772-03:00 7 | TextureImporter 8 | 2017-03-01T12:05:36-03:00 9 | TextureProcessor 10 | 2017-03-01T12:05:36-03:00 11 | 12 | ColorKeyColor 13 | 255,0,255,255 14 | 15 | 16 | ColorKeyEnabled 17 | True 18 | 19 | 20 | GenerateMipmaps 21 | False 22 | 23 | 24 | PremultiplyAlpha 25 | True 26 | 27 | 28 | ResizeToPowerOfTwo 29 | False 30 | 31 | 32 | MakeSquare 33 | False 34 | 35 | 36 | TextureFormat 37 | Color 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /Warcraft/Content/obj/DesktopGL/Humans/Human Transport.mgcontent: -------------------------------------------------------------------------------- 1 | 2 | 3 | c:/users/phgm/documents/visual studio 2015/Projects/Game2/Game2/Content/Humans/Human Transport.png 4 | 2017-05-29T08:02:47.6337243-03:00 5 | c:/users/phgm/documents/visual studio 2015/Projects/Game2/Game2/Content/bin/DesktopGL/Humans/Human Transport.xnb 6 | 2017-05-29T08:07:12.8860106-03:00 7 | TextureImporter 8 | 2017-03-01T12:05:36-03:00 9 | TextureProcessor 10 | 2017-03-01T12:05:36-03:00 11 | 12 | ColorKeyColor 13 | 255,0,255,255 14 | 15 | 16 | ColorKeyEnabled 17 | True 18 | 19 | 20 | GenerateMipmaps 21 | False 22 | 23 | 24 | PremultiplyAlpha 25 | True 26 | 27 | 28 | ResizeToPowerOfTwo 29 | False 30 | 31 | 32 | MakeSquare 33 | False 34 | 35 | 36 | TextureFormat 37 | Color 38 | 39 | 40 | 41 | 42 | --------------------------------------------------------------------------------