10 lines
158 B
C#
10 lines
158 B
C#
|
using Microsoft.Xna.Framework;
|
||
|
|
||
|
namespace Syntriax.Engine.Physics2D;
|
||
|
|
||
|
public record CollisionInformation
|
||
|
(
|
||
|
Vector2 Normal,
|
||
|
Vector2 ContactPosition
|
||
|
);
|