first commit

This commit is contained in:
2026-06-04 21:37:43 +03:00
commit a6ea987b0d
152 changed files with 34059 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
using UnityEngine;
namespace OTG.Lab06.Core
{
public interface IDamageable
{
Transform Transform { get; }
bool IsAlive { get; }
void TakeDamage(float amount);
}
}