Files
MovementTests/interfaces/IDamageable.cs
Minimata 6b97c226f1
All checks were successful
Create tag and build when new code gets to main / BumpTag (push) Successful in 19s
Create tag and build when new code gets to main / Export (push) Successful in 10m48s
setup damage types and modifiers as resources
2026-01-17 14:32:48 +01:00

8 lines
120 B
C#

using Godot;
namespace Movementtests.interfaces;
public interface IDamageable
{
void TakeDamage(RDamage damage);
}