9 lines
109 B
C#
9 lines
109 B
C#
|
|
namespace DestroyIt
|
|
{
|
|
public interface Damage
|
|
{
|
|
float DamageAmount { get; set; }
|
|
}
|
|
}
|