From 44c1454eed3a2710bbf087c721cc4bd7c56fe1b4 Mon Sep 17 00:00:00 2001 From: GeorgeAbbott <57576261+GeorgeAbbott@users.noreply.github.com> Date: Sun, 6 Sep 2020 18:09:11 +0100 Subject: Add files via upload --- MainChara.cs | 65 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 65 insertions(+) create mode 100644 MainChara.cs (limited to 'MainChara.cs') 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 Borders + { + get + { + Vector2 bottomright = new Vector2(); + bottomright.X = (topleft.X + size.X); + bottomright.Y = (topleft.Y + size.Y); + return new List() { 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 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(spriteImage); + this.topleft = position; + } + + public void Draw(SpriteBatch sb) + { + sb.Draw(image, topleft, Color.White); + } + } +} -- cgit v1.2.1