summaryrefslogtreecommitdiff
path: root/scripts/interfaces/IDamageable.cs
blob: e7d6b9982159b48b21757e5e3003a7fd9891c339 (plain)
1
2
3
4
5
6
namespace testing.interfaces;

public interface IDamageable
{
    void TakeDamage(float amount);
}