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

Revision 7211, 487 bytes checked in by sieerinn, 7 years ago (diff)

Aseita ja tähtääminen

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    public Weapon Secondary;
12
13    public Vector Spawn;
14
15    public Player(double leveys, double korkeus, Color color)
16        : base(leveys, korkeus)
17    {
18        Color = color;
19        CanRotate = false;
20
21        Tag = "player";
22        Acceleration = 1500;
23    }
24}
Note: See TracBrowser for help on using the repository browser.