13 lines
308 B
C#
13 lines
308 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(IHealthable source)
|
|
{
|
|
GD.Print($"Death Effect triggered on {source}");
|
|
}
|
|
}
|