aboutsummaryrefslogtreecommitdiff
path: root/V3/Effects/BloodFountain.cs
diff options
context:
space:
mode:
Diffstat (limited to 'V3/Effects/BloodFountain.cs')
-rw-r--r--V3/Effects/BloodFountain.cs11
1 files changed, 11 insertions, 0 deletions
diff --git a/V3/Effects/BloodFountain.cs b/V3/Effects/BloodFountain.cs
new file mode 100644
index 0000000..5684e34
--- /dev/null
+++ b/V3/Effects/BloodFountain.cs
@@ -0,0 +1,11 @@
+namespace V3.Effects
+{
+ /// <summary>
+ /// A small fountain of blood.
+ /// </summary>
+ public sealed class BloodFountain : AbstractEffect
+ {
+ protected override string TextureFile { get; } = "blood_hit_02";
+ protected override string SoundFile { get; } = "impactsplat01";
+ }
+} \ No newline at end of file