Files
MovementTests/interfaces/IDamageMaker.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

9 lines
138 B
C#

using Godot;
namespace Movementtests.interfaces;
public interface IDamageMaker
{
[Export]
RDamage GetDamageDealt { get; set; }
}