f03c0f4469
2 simple attack types IAttack interface
7 lines
167 B
C#
7 lines
167 B
C#
namespace Assets.Scripts.Entities.Attack {
|
|
public interface IAttack {
|
|
void Attack();
|
|
float GetRange();
|
|
float GetCooldownTime();
|
|
}
|
|
}
|