blob: 018f19a354295f38ff2eb7c441aed768e54ed699 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Microsoft.Xna.Framework.Graphics;
using Microsoft.Xna.Framework.Content;
using Microsoft.Xna.Framework;
namespace Class_War
{
class MainChara : Sprite
{
Texture2D image;
public Vector2 topleft;
ContentManager Content;
Vector2 size = new Vector2(50, 50);
public List<Vector2> Borders
{
get
{
Vector2 bottomright = new Vector2();
bottomright.X = (topleft.X + size.X);
bottomright.Y = (topleft.Y + size.Y);
return new List<Vector2>() { topleft, bottomright };
}
}
public void GoUp(int speed = 5)
{
topleft.Y -= speed;
}
public void GoDown(int speed = 5)
{
topleft.Y += speed;
}
public void GoLeft(int speed = 5)
{
topleft.X -= speed;
}
public void GoRight(int speed = 5)
{
topleft.X += speed;
}
public void Fire(ref List<Bullet> bullets, int speed = 5)
{
bullets.Add(new Bullet(Content, topleft, Direction.Up, speed, true));
}
public MainChara (ContentManager Content, string spriteImage, Vector2 position)
{
this.Content = Content;
image = Content.Load<Texture2D>(spriteImage);
this.topleft = position;
}
public void Draw(SpriteBatch sb)
{
sb.Draw(image, topleft, Color.White);
}
}
}
|