Changeset 310
- Timestamp:
- 2009-08-05 14:58:22 (14 years ago)
- Location:
- zhipeng_j
- Files:
-
- 16 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
zhipeng_j/Tankkipeli1/Ohjelma.cs
r288 r310 7 7 static class Ohjelma 8 8 { 9 Vector2D nopeusylos = new Vector2D(0.200);9 10 10 static void Main(string[] args) 11 11 { -
zhipeng_j/pengJ/Peli.cs
r214 r310 53 53 double vaanto = e.Parameter1.ToDouble(); 54 54 55 // Kiihdytetään tankin vauhtia 55 // Kiihdytetään tankin vauhtia; 56 56 t.Accelerate(vaanto); 57 57 … … 64 64 } 65 65 } 66 } -
zhipeng_j/pong/Peli.cs
r288 r310 107 107 108 108 PhysicsObject maila = e.Parameter0.ToPhysicsObject(); 109 Vector2D nopeus = new Vector2D(0, -200 );109 Vector2D nopeus = new Vector2D(0, -2000); 110 110 maila.Velocity = nopeus; 111 111 return false;
Note: See TracChangeset
for help on using the changeset viewer.