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

6 lines
84 B
C#

namespace Movementtests.interfaces;
public interface IKillable
{
void Kill();
}