Files
broberry/Assets/Scripts/Interfaces/IWeapon.cs

7 lines
86 B
C#

namespace Interfaces
{
public interface IWeapon
{
void Fire();
}
}