Files
MovementTests/scenes/components/health/RDeathEffect.cs
Minimata 68e36742af
All checks were successful
Create tag and build when new code gets to main / BumpTag (push) Successful in 27s
Create tag and build when new code gets to main / Export (push) Successful in 5m25s
removed obsolete interfaces for health and damage
2026-05-05 11:51:35 +02:00

13 lines
278 B
C#

using Godot;
using System;
using Movementtests.interfaces;
[GlobalClass, Icon("res://assets/ui/IconGodotNode/control/icon_thunder.png")]
public partial class RDeathEffect : Resource, IKillable
{
public void Kill()
{
GD.Print($"Death Effect triggered");
}
}