kakozuzo/Code/swb_base/BulletBase.cs

9 lines
187 B
C#
Raw Permalink Normal View History

2024-10-30 19:01:58 +03:00
namespace SWB.Base;
public interface IBulletBase
{
public void Shoot( Weapon weapon, ShootInfo shootInfo, Vector3 spreadOffset );
public Vector3 GetRandomSpread( float spread );
}