summaryrefslogtreecommitdiff
path: root/MainChara.cs
diff options
context:
space:
mode:
authorGeorgeAbbott <57576261+GeorgeAbbott@users.noreply.github.com>2020-09-06 18:09:11 +0100
committerGitHub <noreply@github.com>2020-09-06 18:09:11 +0100
commit44c1454eed3a2710bbf087c721cc4bd7c56fe1b4 (patch)
tree54ff5cf753774be83feae2e15672ed4fa26ad4f1 /MainChara.cs
Add files via upload
Diffstat (limited to 'MainChara.cs')
-rw-r--r--MainChara.cs65
1 files changed, 65 insertions, 0 deletions
diff --git a/MainChara.cs b/MainChara.cs
new file mode 100644
index 0000000..018f19a
--- /dev/null
+++ b/MainChara.cs
@@ -0,0 +1,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);
+ }
+ }
+}