two enemy types, ready to refactor

This commit is contained in:
2026-01-17 10:10:14 +01:00
parent 63529a11ae
commit 5908494977
19 changed files with 256 additions and 32 deletions

View File

@@ -0,0 +1,6 @@
namespace Movementtests.interfaces;
public interface IDamageable
{
void TakeDamage();
}