Revision 7205,
504 bytes
checked in by sieerinn, 7 years ago
(diff) |
Nimiä vaihdettu englanninkielelle ja kenttää paranneltu
|
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 | |
---|
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.