1
0
Fork 0
Bildschirmflausch-LD41/Assets/Scripts/Entities/Attack/IAttack.cs
Saibotk f03c0f4469 Attack package
2 simple attack types 
IAttack interface
2018-04-22 23:49:43 +02:00

7 lines
167 B
C#

namespace Assets.Scripts.Entities.Attack {
public interface IAttack {
void Attack();
float GetRange();
float GetCooldownTime();
}
}