- Timestamp:
- 2011-06-30 10:24:40 (12 years ago)
- Location:
- 2011/26/JaakkoL/Rogue Agent 2372/Rogue Agent 2372/Rogue Agent 2372
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
2011/26/JaakkoL/Rogue Agent 2372/Rogue Agent 2372/Rogue Agent 2372/Peli.cs
r2295 r2337 1 using System;1 using System; 2 2 using System.Collections.Generic; 3 3 using Jypeli; -
2011/26/JaakkoL/Rogue Agent 2372/Rogue Agent 2372/Rogue Agent 2372/Player.cs
r2336 r2337 27 27 walker.Trigger += playWalkingSound; 28 28 29 this.Weapon = new Pistol(20.0, 10.0); 29 Pistol pistol = new Pistol(20.0, 10.0); 30 pistol.X = -0.05; 31 pistol.Y = 5; 32 this.Weapon = pistol; 30 33 } 31 34 -
2011/26/JaakkoL/Rogue Agent 2372/Rogue Agent 2372/Rogue Agent 2372/Weapons.cs
r2300 r2337 18 18 protected override PhysicsObject CreateProjectile() 19 19 { 20 return new Projectile(1, 1, Color. Aqua);20 return new Projectile(1, 1, Color.DarkGray); 21 21 } 22 22 }
Note: See TracChangeset
for help on using the changeset viewer.