diff options
author | GeorgeAbbott <57576261+GeorgeAbbott@users.noreply.github.com> | 2020-09-06 18:09:11 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-06 18:09:11 +0100 |
commit | 44c1454eed3a2710bbf087c721cc4bd7c56fe1b4 (patch) | |
tree | 54ff5cf753774be83feae2e15672ed4fa26ad4f1 /Sprite.cs |
Add files via upload
Diffstat (limited to 'Sprite.cs')
-rw-r--r-- | Sprite.cs | 14 |
1 files changed, 14 insertions, 0 deletions
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);
+ }
+}
|