aboutsummaryrefslogtreecommitdiff
path: root/V3/Effects/Quake.cs
diff options
context:
space:
mode:
Diffstat (limited to 'V3/Effects/Quake.cs')
-rw-r--r--V3/Effects/Quake.cs11
1 files changed, 11 insertions, 0 deletions
diff --git a/V3/Effects/Quake.cs b/V3/Effects/Quake.cs
new file mode 100644
index 0000000..c08825d
--- /dev/null
+++ b/V3/Effects/Quake.cs
@@ -0,0 +1,11 @@
+using Microsoft.Xna.Framework;
+
+namespace V3.Effects
+{
+ public class Quake : AbstractEffect
+ {
+ protected override string TextureFile { get; } = "quake";
+ protected override Point SpriteSize { get; } = new Point(256, 128);
+ protected override string SoundFile { get; } = "explodemini";
+ }
+} \ No newline at end of file