first commit

This commit is contained in:
2026-05-25 23:10:02 +03:00
commit c9b9947a9c
127 changed files with 31887 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
using UnityEngine;
public interface IDamageable
{
void TakeDamage(float amount, Vector3 hitPoint, Vector3 hitNormal);
}