source: 2016/23/ohjaajat/Punasininen/Punasininen/Punasininen/Player.cs @ 7205

Revision 7205, 504 bytes checked in by sieerinn, 7 years ago (diff)

Nimiä vaihdettu englanninkielelle ja kenttää paranneltu

Line 
1using System;
2using System.Collections.Generic;
3using Jypeli;
4using Jypeli.Assets;
5using Jypeli.Controls;
6using Jypeli.Effects;
7using Jypeli.Widgets;
8
9public class Player : PlatformCharacter2
10{
11
12    public Weapon Secondary;
13
14    public Player(double leveys, double korkeus, Image pic, Color color)
15        : base(leveys, korkeus)
16    {
17        Image = pic;
18        Color = color;
19        CanRotate = false;
20
21        Tag = "player";
22        Acceleration = 5000;
23     
24
25    }
26}
Note: See TracBrowser for help on using the repository browser.