Revision 7211,
487 bytes
checked in by sieerinn, 7 years ago
(diff) |
Aseita ja tähtääminen
|
Line | |
---|
1 | using System; |
---|
2 | using System.Collections.Generic; |
---|
3 | using Jypeli; |
---|
4 | using Jypeli.Assets; |
---|
5 | using Jypeli.Controls; |
---|
6 | using Jypeli.Effects; |
---|
7 | using Jypeli.Widgets; |
---|
8 | |
---|
9 | public 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.