2024-01-25 18:21:52 +03:00
|
|
|
using Syntriax.Engine.Physics2D.Abstract;
|
|
|
|
|
|
|
|
namespace Syntriax.Engine.Physics2D;
|
|
|
|
|
|
|
|
public interface ICollisionDetector
|
|
|
|
{
|
2024-01-26 23:40:02 +03:00
|
|
|
bool TryDetect<T1, T2>(T1 left, T2 right, out CollisionDetectionInformation collisionInformation) where T1 : ICollider2D where T2 : ICollider2D;
|
2024-01-25 18:21:52 +03:00
|
|
|
}
|