- Timestamp:
- 2011-06-29 14:24:48 (12 years ago)
- Location:
- 2011/26/JaakkoL/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
r2290 r2295 12 12 const int SCREEN_HEIGTH = 50; 13 13 Player player; 14 Image background1 = LoadImage("Images/reactorBG"); 14 15 15 16 public override void Begin() … … 36 37 levelSpec.Insert(SCREEN_WIDTH, SCREEN_HEIGTH); 37 38 Level.CreateBorders(); 39 Level.Background.Image = background1; 38 40 } 39 41 … … 56 58 PhysicsObject hBlock = PhysicsObject.CreateStaticObject(SCREEN_WIDTH, SCREEN_HEIGTH, 57 59 Shape.Rectangle, CollisionShapeQuality.Best); 58 hBlock.Color = Color. Black;60 hBlock.Color = Color.Gray; 59 61 return hBlock; 60 62 } … … 64 66 PhysicsObject vBlock = PhysicsObject.CreateStaticObject(SCREEN_WIDTH, SCREEN_HEIGTH, 65 67 Shape.Rectangle, CollisionShapeQuality.Best); 66 vBlock.Color = Color. Red;68 vBlock.Color = Color.DarkGray; 67 69 return vBlock; 68 70 } -
2011/26/JaakkoL/Rogue Agent 2372/Rogue Agent 2372/Rogue Agent 2372/Rogue Agent 2372.csproj
r2261 r2295 112 112 <ItemGroup> 113 113 <Compile Include="Weapons.cs" /> 114 <Compile Include="GenWeapon.cs" />115 114 <Compile Include="Enemies.cs" /> 116 115 <Compile Include="Enemy.cs" />
Note: See TracChangeset
for help on using the changeset viewer.