Files
PIM_Laba3/Assets/Scripts/IDamageable.cs
T

7 lines
125 B
C#
Raw Normal View History

2026-05-25 23:10:02 +03:00
using UnityEngine;
public interface IDamageable
{
void TakeDamage(float amount, Vector3 hitPoint, Vector3 hitNormal);
}