10 lines
194 B
C#
10 lines
194 B
C#
|
using UnityEngine;
|
||
|
|
||
|
// ReSharper disable once CheckNamespace
|
||
|
namespace BlueWaterProject
|
||
|
{
|
||
|
public interface IDestructible : IDamageable
|
||
|
{
|
||
|
public int Strength { get; set; }
|
||
|
}
|
||
|
}
|