diff options
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);
+ }
+}
|