13 lines
246 B
C#
13 lines
246 B
C#
|
using Syntriax.Engine.Core;
|
||
|
using Syntriax.Engine.Physics2D.Abstract;
|
||
|
|
||
|
namespace Syntriax.Engine.Physics2D;
|
||
|
|
||
|
public record CollisionDetectionInformation
|
||
|
(
|
||
|
ICollider2D Left,
|
||
|
ICollider2D Right,
|
||
|
Vector2D Normal,
|
||
|
float Penetration
|
||
|
);
|