BREAKING CHANGE: New ICollider

This commit is contained in:
2024-01-24 19:21:53 +03:00
parent 350ef030ac
commit ed15238dcd
11 changed files with 123 additions and 77 deletions

View File

@@ -0,0 +1,9 @@
using Syntriax.Engine.Physics2D.Primitives;
namespace Syntriax.Engine.Physics2D.Abstract;
public interface ICircleCollider2D : ICollider2D
{
Circle CircleLocal { get; set; }
Circle CircleWorld { get; }
}