source: 2016/24/OliverK/ball/ball/ball/ball.cs @ 7306

Revision 7306, 513 bytes checked in by tesatapa, 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 ball : PhysicsGame
10{
11
12    PhysicsObject pelaaja1;
13
14    public override void Begin()
15    {
16
17        Level.CreateBorders();
18
19        Camera.ZoomToLevel();
20
21        PhoneBackButton.Listen(ConfirmExit, "Lopeta peli");
22        Keyboard.Listen(Key.Escape, ButtonState.Pressed, ConfirmExit, "Lopeta peli");
23    }
24
25
26
27
28}
29
30
31
Note: See TracBrowser for help on using the repository browser.