source: 2015/koodauskerho/SanteriK/FastestGunInTown/FastestGunInTown/FastestGunInTown/FastestGunInTown.cs @ 7902

Revision 7902, 541 bytes checked in by karkaite, 7 years ago (diff)
Line 
1using System;
2using System.Collections.Generic;
3using Jypeli;
4using Jypeli.Assets;
5using Jypeli.Controls;
6using Jypeli.Effects;
7using Jypeli.Widgets;
8
9public class FastestGunInTown : PhysicsGame
10{
11    public override void Begin()
12    {
13        // TODO: Kirjoita ohjelmakoodisi tähän
14
15        Keyboard.Listen(Key.Escape, ButtonState.Pressed, ConfirmExit, "Lopeta peli");
16
17        PhysicsObject hahmo = new PhysicsObject(40, 20);
18       // kissa.Shape = Shape.Rectangle;
19        Add(hahmo);
20       
21    }
22   
23}
24
Note: See TracBrowser for help on using the repository browser.