refactor: Renamed ICollisionDetector to ICollisionDetector2D

This commit is contained in:
2024-01-27 19:58:31 +03:00
parent 309c8db6e1
commit 05d88f7ca2
3 changed files with 3 additions and 3 deletions

View File

@@ -0,0 +1,8 @@
using Syntriax.Engine.Physics2D.Abstract;
namespace Syntriax.Engine.Physics2D;
public interface ICollisionDetector2D
{
bool TryDetect<T1, T2>(T1 left, T2 right, out CollisionDetectionInformation collisionInformation) where T1 : ICollider2D where T2 : ICollider2D;
}