├── .gitignore ├── README ├── StarWarrior.sln ├── StarWarrior ├── StarWarrior │ ├── ArtemisDLL │ │ ├── Debug │ │ │ ├── PC │ │ │ │ ├── artemis.dll │ │ │ │ └── artemis.xml │ │ │ ├── Phone7 │ │ │ │ ├── ArtemisPhone7.dll │ │ │ │ ├── ArtemisPhone7.xml │ │ │ │ ├── ParallelTasks.dll │ │ │ │ └── ParallelTasks.xml │ │ │ └── Xbox360 │ │ │ │ ├── ArtemisXbox360.dll │ │ │ │ ├── ArtemisXbox360.xml │ │ │ │ ├── ParallelTasks.dll │ │ │ │ └── ParallelTasks.xml │ │ └── Release │ │ │ ├── PC │ │ │ ├── artemis.dll │ │ │ └── artemis.xml │ │ │ ├── Phone7 │ │ │ ├── ArtemisPhone7.dll │ │ │ ├── ArtemisPhone7.xml │ │ │ ├── ParallelTasks.dll │ │ │ └── ParallelTasks.xml │ │ │ └── Xbox360 │ │ │ ├── ArtemisXbox360.dll │ │ │ ├── ArtemisXbox360.xml │ │ │ ├── ParallelTasks.dll │ │ │ └── ParallelTasks.xml │ ├── Background.png │ ├── Components │ │ ├── EnemyComponent.cs │ │ ├── ExpiresComponent.cs │ │ ├── HealthComponent.cs │ │ ├── SpatialFormComponent.cs │ │ ├── TransformComponent.cs │ │ ├── VelocityComponent.cs │ │ └── WeaponComponent.cs │ ├── Game.ico │ ├── GameThumbnail.png │ ├── PhoneGameThumb.png │ ├── Primitives │ │ ├── Lines.cs │ │ ├── PrimitiveBatch.cs │ │ ├── Triangle.cs │ │ └── TrianglesStrip.cs │ ├── Program.cs │ ├── Properties │ │ ├── AppManifest.xml │ │ ├── AssemblyInfo.cs │ │ └── WMAppManifest.xml │ ├── Spatials │ │ ├── EnemyShip.cs │ │ ├── Explosion.cs │ │ ├── Missile.cs │ │ ├── PlayerShip.cs │ │ └── ShipExplosion.cs │ ├── StarWarrior.csproj │ ├── StarWarriorGame.cs │ ├── StarWarriorPhone7.csproj │ ├── StarWarriorXbox360.csproj │ ├── StyleCop.Cache │ ├── Systems │ │ ├── CollisionSystem.cs │ │ ├── EnemyShipMovementSystem.cs │ │ ├── EnemyShooterSystem.cs │ │ ├── EnemySpawnSystem.cs │ │ ├── ExpirationSystem.cs │ │ ├── HealthBarRenderSystem.cs │ │ ├── HudRenderSystem.cs │ │ ├── MovementSystem.cs │ │ ├── PlayerShipControlSystem.cs │ │ └── RenderSystem.cs │ └── Templates │ │ ├── BulletExplosionTemplate.cs │ │ ├── EnemyShipTemplate.cs │ │ ├── MissileTemplate.cs │ │ └── ShipExplosionTemplate.cs └── StarWarriorContent │ ├── StarWarriorContent.contentproj │ ├── StyleCop.Cache │ ├── bullet.png │ ├── enemy.png │ ├── explosion.png │ ├── myFont.spritefont │ └── player.png ├── StarWarrior130409.vspx ├── UpgradeLog.XML ├── UpgradeLog.htm └── _UpgradeReport_Files ├── UpgradeReport.css ├── UpgradeReport.xslt ├── UpgradeReport_Error.png ├── UpgradeReport_Information.png ├── UpgradeReport_Success.png └── UpgradeReport_Warning.png /.gitignore: -------------------------------------------------------------------------------- 1 | *.suo 2 | *.user 3 | *.cachefile 4 | bin/ 5 | obj/ -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelinuxlich/starwarrior_CSharp/HEAD/README -------------------------------------------------------------------------------- /StarWarrior.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelinuxlich/starwarrior_CSharp/HEAD/StarWarrior.sln -------------------------------------------------------------------------------- /StarWarrior/StarWarrior/ArtemisDLL/Debug/PC/artemis.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelinuxlich/starwarrior_CSharp/HEAD/StarWarrior/StarWarrior/ArtemisDLL/Debug/PC/artemis.dll -------------------------------------------------------------------------------- /StarWarrior/StarWarrior/ArtemisDLL/Debug/PC/artemis.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelinuxlich/starwarrior_CSharp/HEAD/StarWarrior/StarWarrior/ArtemisDLL/Debug/PC/artemis.xml -------------------------------------------------------------------------------- /StarWarrior/StarWarrior/ArtemisDLL/Debug/Phone7/ArtemisPhone7.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelinuxlich/starwarrior_CSharp/HEAD/StarWarrior/StarWarrior/ArtemisDLL/Debug/Phone7/ArtemisPhone7.dll -------------------------------------------------------------------------------- /StarWarrior/StarWarrior/ArtemisDLL/Debug/Phone7/ArtemisPhone7.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelinuxlich/starwarrior_CSharp/HEAD/StarWarrior/StarWarrior/ArtemisDLL/Debug/Phone7/ArtemisPhone7.xml -------------------------------------------------------------------------------- /StarWarrior/StarWarrior/ArtemisDLL/Debug/Phone7/ParallelTasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelinuxlich/starwarrior_CSharp/HEAD/StarWarrior/StarWarrior/ArtemisDLL/Debug/Phone7/ParallelTasks.dll -------------------------------------------------------------------------------- /StarWarrior/StarWarrior/ArtemisDLL/Debug/Phone7/ParallelTasks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelinuxlich/starwarrior_CSharp/HEAD/StarWarrior/StarWarrior/ArtemisDLL/Debug/Phone7/ParallelTasks.xml -------------------------------------------------------------------------------- /StarWarrior/StarWarrior/ArtemisDLL/Debug/Xbox360/ArtemisXbox360.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelinuxlich/starwarrior_CSharp/HEAD/StarWarrior/StarWarrior/ArtemisDLL/Debug/Xbox360/ArtemisXbox360.dll -------------------------------------------------------------------------------- /StarWarrior/StarWarrior/ArtemisDLL/Debug/Xbox360/ArtemisXbox360.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelinuxlich/starwarrior_CSharp/HEAD/StarWarrior/StarWarrior/ArtemisDLL/Debug/Xbox360/ArtemisXbox360.xml -------------------------------------------------------------------------------- /StarWarrior/StarWarrior/ArtemisDLL/Debug/Xbox360/ParallelTasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelinuxlich/starwarrior_CSharp/HEAD/StarWarrior/StarWarrior/ArtemisDLL/Debug/Xbox360/ParallelTasks.dll -------------------------------------------------------------------------------- /StarWarrior/StarWarrior/ArtemisDLL/Debug/Xbox360/ParallelTasks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelinuxlich/starwarrior_CSharp/HEAD/StarWarrior/StarWarrior/ArtemisDLL/Debug/Xbox360/ParallelTasks.xml -------------------------------------------------------------------------------- /StarWarrior/StarWarrior/ArtemisDLL/Release/PC/artemis.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelinuxlich/starwarrior_CSharp/HEAD/StarWarrior/StarWarrior/ArtemisDLL/Release/PC/artemis.dll -------------------------------------------------------------------------------- /StarWarrior/StarWarrior/ArtemisDLL/Release/PC/artemis.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelinuxlich/starwarrior_CSharp/HEAD/StarWarrior/StarWarrior/ArtemisDLL/Release/PC/artemis.xml -------------------------------------------------------------------------------- /StarWarrior/StarWarrior/ArtemisDLL/Release/Phone7/ArtemisPhone7.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelinuxlich/starwarrior_CSharp/HEAD/StarWarrior/StarWarrior/ArtemisDLL/Release/Phone7/ArtemisPhone7.dll -------------------------------------------------------------------------------- /StarWarrior/StarWarrior/ArtemisDLL/Release/Phone7/ArtemisPhone7.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelinuxlich/starwarrior_CSharp/HEAD/StarWarrior/StarWarrior/ArtemisDLL/Release/Phone7/ArtemisPhone7.xml -------------------------------------------------------------------------------- /StarWarrior/StarWarrior/ArtemisDLL/Release/Phone7/ParallelTasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelinuxlich/starwarrior_CSharp/HEAD/StarWarrior/StarWarrior/ArtemisDLL/Release/Phone7/ParallelTasks.dll -------------------------------------------------------------------------------- /StarWarrior/StarWarrior/ArtemisDLL/Release/Phone7/ParallelTasks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelinuxlich/starwarrior_CSharp/HEAD/StarWarrior/StarWarrior/ArtemisDLL/Release/Phone7/ParallelTasks.xml -------------------------------------------------------------------------------- /StarWarrior/StarWarrior/ArtemisDLL/Release/Xbox360/ArtemisXbox360.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelinuxlich/starwarrior_CSharp/HEAD/StarWarrior/StarWarrior/ArtemisDLL/Release/Xbox360/ArtemisXbox360.dll -------------------------------------------------------------------------------- /StarWarrior/StarWarrior/ArtemisDLL/Release/Xbox360/ArtemisXbox360.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelinuxlich/starwarrior_CSharp/HEAD/StarWarrior/StarWarrior/ArtemisDLL/Release/Xbox360/ArtemisXbox360.xml -------------------------------------------------------------------------------- /StarWarrior/StarWarrior/ArtemisDLL/Release/Xbox360/ParallelTasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelinuxlich/starwarrior_CSharp/HEAD/StarWarrior/StarWarrior/ArtemisDLL/Release/Xbox360/ParallelTasks.dll -------------------------------------------------------------------------------- /StarWarrior/StarWarrior/ArtemisDLL/Release/Xbox360/ParallelTasks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelinuxlich/starwarrior_CSharp/HEAD/StarWarrior/StarWarrior/ArtemisDLL/Release/Xbox360/ParallelTasks.xml -------------------------------------------------------------------------------- /StarWarrior/StarWarrior/Background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelinuxlich/starwarrior_CSharp/HEAD/StarWarrior/StarWarrior/Background.png -------------------------------------------------------------------------------- /StarWarrior/StarWarrior/Components/EnemyComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelinuxlich/starwarrior_CSharp/HEAD/StarWarrior/StarWarrior/Components/EnemyComponent.cs -------------------------------------------------------------------------------- /StarWarrior/StarWarrior/Components/ExpiresComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelinuxlich/starwarrior_CSharp/HEAD/StarWarrior/StarWarrior/Components/ExpiresComponent.cs -------------------------------------------------------------------------------- /StarWarrior/StarWarrior/Components/HealthComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelinuxlich/starwarrior_CSharp/HEAD/StarWarrior/StarWarrior/Components/HealthComponent.cs -------------------------------------------------------------------------------- /StarWarrior/StarWarrior/Components/SpatialFormComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelinuxlich/starwarrior_CSharp/HEAD/StarWarrior/StarWarrior/Components/SpatialFormComponent.cs -------------------------------------------------------------------------------- /StarWarrior/StarWarrior/Components/TransformComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelinuxlich/starwarrior_CSharp/HEAD/StarWarrior/StarWarrior/Components/TransformComponent.cs -------------------------------------------------------------------------------- /StarWarrior/StarWarrior/Components/VelocityComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelinuxlich/starwarrior_CSharp/HEAD/StarWarrior/StarWarrior/Components/VelocityComponent.cs -------------------------------------------------------------------------------- /StarWarrior/StarWarrior/Components/WeaponComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelinuxlich/starwarrior_CSharp/HEAD/StarWarrior/StarWarrior/Components/WeaponComponent.cs -------------------------------------------------------------------------------- /StarWarrior/StarWarrior/Game.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelinuxlich/starwarrior_CSharp/HEAD/StarWarrior/StarWarrior/Game.ico -------------------------------------------------------------------------------- /StarWarrior/StarWarrior/GameThumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelinuxlich/starwarrior_CSharp/HEAD/StarWarrior/StarWarrior/GameThumbnail.png -------------------------------------------------------------------------------- /StarWarrior/StarWarrior/PhoneGameThumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelinuxlich/starwarrior_CSharp/HEAD/StarWarrior/StarWarrior/PhoneGameThumb.png -------------------------------------------------------------------------------- /StarWarrior/StarWarrior/Primitives/Lines.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelinuxlich/starwarrior_CSharp/HEAD/StarWarrior/StarWarrior/Primitives/Lines.cs -------------------------------------------------------------------------------- /StarWarrior/StarWarrior/Primitives/PrimitiveBatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelinuxlich/starwarrior_CSharp/HEAD/StarWarrior/StarWarrior/Primitives/PrimitiveBatch.cs -------------------------------------------------------------------------------- /StarWarrior/StarWarrior/Primitives/Triangle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelinuxlich/starwarrior_CSharp/HEAD/StarWarrior/StarWarrior/Primitives/Triangle.cs -------------------------------------------------------------------------------- /StarWarrior/StarWarrior/Primitives/TrianglesStrip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelinuxlich/starwarrior_CSharp/HEAD/StarWarrior/StarWarrior/Primitives/TrianglesStrip.cs -------------------------------------------------------------------------------- /StarWarrior/StarWarrior/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelinuxlich/starwarrior_CSharp/HEAD/StarWarrior/StarWarrior/Program.cs -------------------------------------------------------------------------------- /StarWarrior/StarWarrior/Properties/AppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelinuxlich/starwarrior_CSharp/HEAD/StarWarrior/StarWarrior/Properties/AppManifest.xml -------------------------------------------------------------------------------- /StarWarrior/StarWarrior/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelinuxlich/starwarrior_CSharp/HEAD/StarWarrior/StarWarrior/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /StarWarrior/StarWarrior/Properties/WMAppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelinuxlich/starwarrior_CSharp/HEAD/StarWarrior/StarWarrior/Properties/WMAppManifest.xml -------------------------------------------------------------------------------- /StarWarrior/StarWarrior/Spatials/EnemyShip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelinuxlich/starwarrior_CSharp/HEAD/StarWarrior/StarWarrior/Spatials/EnemyShip.cs -------------------------------------------------------------------------------- /StarWarrior/StarWarrior/Spatials/Explosion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelinuxlich/starwarrior_CSharp/HEAD/StarWarrior/StarWarrior/Spatials/Explosion.cs -------------------------------------------------------------------------------- /StarWarrior/StarWarrior/Spatials/Missile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelinuxlich/starwarrior_CSharp/HEAD/StarWarrior/StarWarrior/Spatials/Missile.cs -------------------------------------------------------------------------------- /StarWarrior/StarWarrior/Spatials/PlayerShip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelinuxlich/starwarrior_CSharp/HEAD/StarWarrior/StarWarrior/Spatials/PlayerShip.cs -------------------------------------------------------------------------------- /StarWarrior/StarWarrior/Spatials/ShipExplosion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelinuxlich/starwarrior_CSharp/HEAD/StarWarrior/StarWarrior/Spatials/ShipExplosion.cs -------------------------------------------------------------------------------- /StarWarrior/StarWarrior/StarWarrior.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelinuxlich/starwarrior_CSharp/HEAD/StarWarrior/StarWarrior/StarWarrior.csproj -------------------------------------------------------------------------------- /StarWarrior/StarWarrior/StarWarriorGame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelinuxlich/starwarrior_CSharp/HEAD/StarWarrior/StarWarrior/StarWarriorGame.cs -------------------------------------------------------------------------------- /StarWarrior/StarWarrior/StarWarriorPhone7.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelinuxlich/starwarrior_CSharp/HEAD/StarWarrior/StarWarrior/StarWarriorPhone7.csproj -------------------------------------------------------------------------------- /StarWarrior/StarWarrior/StarWarriorXbox360.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelinuxlich/starwarrior_CSharp/HEAD/StarWarrior/StarWarrior/StarWarriorXbox360.csproj -------------------------------------------------------------------------------- /StarWarrior/StarWarrior/StyleCop.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelinuxlich/starwarrior_CSharp/HEAD/StarWarrior/StarWarrior/StyleCop.Cache -------------------------------------------------------------------------------- /StarWarrior/StarWarrior/Systems/CollisionSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelinuxlich/starwarrior_CSharp/HEAD/StarWarrior/StarWarrior/Systems/CollisionSystem.cs -------------------------------------------------------------------------------- /StarWarrior/StarWarrior/Systems/EnemyShipMovementSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelinuxlich/starwarrior_CSharp/HEAD/StarWarrior/StarWarrior/Systems/EnemyShipMovementSystem.cs -------------------------------------------------------------------------------- /StarWarrior/StarWarrior/Systems/EnemyShooterSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelinuxlich/starwarrior_CSharp/HEAD/StarWarrior/StarWarrior/Systems/EnemyShooterSystem.cs -------------------------------------------------------------------------------- /StarWarrior/StarWarrior/Systems/EnemySpawnSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelinuxlich/starwarrior_CSharp/HEAD/StarWarrior/StarWarrior/Systems/EnemySpawnSystem.cs -------------------------------------------------------------------------------- /StarWarrior/StarWarrior/Systems/ExpirationSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelinuxlich/starwarrior_CSharp/HEAD/StarWarrior/StarWarrior/Systems/ExpirationSystem.cs -------------------------------------------------------------------------------- /StarWarrior/StarWarrior/Systems/HealthBarRenderSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelinuxlich/starwarrior_CSharp/HEAD/StarWarrior/StarWarrior/Systems/HealthBarRenderSystem.cs -------------------------------------------------------------------------------- /StarWarrior/StarWarrior/Systems/HudRenderSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelinuxlich/starwarrior_CSharp/HEAD/StarWarrior/StarWarrior/Systems/HudRenderSystem.cs -------------------------------------------------------------------------------- /StarWarrior/StarWarrior/Systems/MovementSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelinuxlich/starwarrior_CSharp/HEAD/StarWarrior/StarWarrior/Systems/MovementSystem.cs -------------------------------------------------------------------------------- /StarWarrior/StarWarrior/Systems/PlayerShipControlSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelinuxlich/starwarrior_CSharp/HEAD/StarWarrior/StarWarrior/Systems/PlayerShipControlSystem.cs -------------------------------------------------------------------------------- /StarWarrior/StarWarrior/Systems/RenderSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelinuxlich/starwarrior_CSharp/HEAD/StarWarrior/StarWarrior/Systems/RenderSystem.cs -------------------------------------------------------------------------------- /StarWarrior/StarWarrior/Templates/BulletExplosionTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelinuxlich/starwarrior_CSharp/HEAD/StarWarrior/StarWarrior/Templates/BulletExplosionTemplate.cs -------------------------------------------------------------------------------- /StarWarrior/StarWarrior/Templates/EnemyShipTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelinuxlich/starwarrior_CSharp/HEAD/StarWarrior/StarWarrior/Templates/EnemyShipTemplate.cs -------------------------------------------------------------------------------- /StarWarrior/StarWarrior/Templates/MissileTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelinuxlich/starwarrior_CSharp/HEAD/StarWarrior/StarWarrior/Templates/MissileTemplate.cs -------------------------------------------------------------------------------- /StarWarrior/StarWarrior/Templates/ShipExplosionTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelinuxlich/starwarrior_CSharp/HEAD/StarWarrior/StarWarrior/Templates/ShipExplosionTemplate.cs -------------------------------------------------------------------------------- /StarWarrior/StarWarriorContent/StarWarriorContent.contentproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelinuxlich/starwarrior_CSharp/HEAD/StarWarrior/StarWarriorContent/StarWarriorContent.contentproj -------------------------------------------------------------------------------- /StarWarrior/StarWarriorContent/StyleCop.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelinuxlich/starwarrior_CSharp/HEAD/StarWarrior/StarWarriorContent/StyleCop.Cache -------------------------------------------------------------------------------- /StarWarrior/StarWarriorContent/bullet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelinuxlich/starwarrior_CSharp/HEAD/StarWarrior/StarWarriorContent/bullet.png -------------------------------------------------------------------------------- /StarWarrior/StarWarriorContent/enemy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelinuxlich/starwarrior_CSharp/HEAD/StarWarrior/StarWarriorContent/enemy.png -------------------------------------------------------------------------------- /StarWarrior/StarWarriorContent/explosion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelinuxlich/starwarrior_CSharp/HEAD/StarWarrior/StarWarriorContent/explosion.png -------------------------------------------------------------------------------- /StarWarrior/StarWarriorContent/myFont.spritefont: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelinuxlich/starwarrior_CSharp/HEAD/StarWarrior/StarWarriorContent/myFont.spritefont -------------------------------------------------------------------------------- /StarWarrior/StarWarriorContent/player.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelinuxlich/starwarrior_CSharp/HEAD/StarWarrior/StarWarriorContent/player.png -------------------------------------------------------------------------------- /StarWarrior130409.vspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelinuxlich/starwarrior_CSharp/HEAD/StarWarrior130409.vspx -------------------------------------------------------------------------------- /UpgradeLog.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelinuxlich/starwarrior_CSharp/HEAD/UpgradeLog.XML -------------------------------------------------------------------------------- /UpgradeLog.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelinuxlich/starwarrior_CSharp/HEAD/UpgradeLog.htm -------------------------------------------------------------------------------- /_UpgradeReport_Files/UpgradeReport.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelinuxlich/starwarrior_CSharp/HEAD/_UpgradeReport_Files/UpgradeReport.css -------------------------------------------------------------------------------- /_UpgradeReport_Files/UpgradeReport.xslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelinuxlich/starwarrior_CSharp/HEAD/_UpgradeReport_Files/UpgradeReport.xslt -------------------------------------------------------------------------------- /_UpgradeReport_Files/UpgradeReport_Error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelinuxlich/starwarrior_CSharp/HEAD/_UpgradeReport_Files/UpgradeReport_Error.png -------------------------------------------------------------------------------- /_UpgradeReport_Files/UpgradeReport_Information.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelinuxlich/starwarrior_CSharp/HEAD/_UpgradeReport_Files/UpgradeReport_Information.png -------------------------------------------------------------------------------- /_UpgradeReport_Files/UpgradeReport_Success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelinuxlich/starwarrior_CSharp/HEAD/_UpgradeReport_Files/UpgradeReport_Success.png -------------------------------------------------------------------------------- /_UpgradeReport_Files/UpgradeReport_Warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelinuxlich/starwarrior_CSharp/HEAD/_UpgradeReport_Files/UpgradeReport_Warning.png --------------------------------------------------------------------------------