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();
}

View File

@@ -0,0 +1 @@
uid://cf56b2ep3bu3j

6
interfaces/IKillable.cs Normal file
View File

@@ -0,0 +1,6 @@
namespace Movementtests.interfaces;
public interface IKillable
{
}

View File

@@ -0,0 +1 @@
uid://bea2kvnu3kuhu

View File

@@ -0,0 +1,6 @@
namespace Movementtests.interfaces;
public interface IKnockbackable
{
}

View File

@@ -0,0 +1 @@
uid://bh06s1yefucf7

View File

@@ -3,6 +3,5 @@ using Godot;
interface ISpawnable
{
Resource GetSpawnInitResource();
void TestMethod();
}