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

---
 Sprite.cs | 14 ++++++++++++++
 1 file changed, 14 insertions(+)
 create mode 100644 Sprite.cs

(limited to 'Sprite.cs')

diff --git a/Sprite.cs b/Sprite.cs
new file mode 100644
index 0000000..14e1d50
--- /dev/null
+++ b/Sprite.cs
@@ -0,0 +1,14 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using Microsoft.Xna.Framework.Graphics;
+
+namespace Class_War
+{
+    interface Sprite
+    {
+        void Draw(SpriteBatch sb);
+    }
+}
-- 
cgit v1.2.1