fix: Build Errors
This commit is contained in:
parent
0d29ab066f
commit
5ed7ccdded
|
@ -1,6 +1,6 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
using Engine.Physics2D;
|
||||
using Syntriax.Engine.Core;
|
||||
using Syntriax.Engine.Core.Abstract;
|
||||
using Syntriax.Engine.Physics2D.Abstract;
|
||||
|
|
|
@ -1,9 +1,10 @@
|
|||
using Microsoft.Xna.Framework;
|
||||
|
||||
using Syntriax.Engine.Core;
|
||||
|
||||
namespace Syntriax.Engine.Physics2D;
|
||||
|
||||
public record CollisionInformation
|
||||
(
|
||||
Vector2 Normal,
|
||||
Vector2 ContactPosition
|
||||
Vector2D Normal,
|
||||
Vector2D ContactPosition
|
||||
);
|
||||
|
|
Loading…
Reference in New Issue