mirror of
https://github.com/AlexMacocian/MonoGame.Extended.git
synced 2026-07-24 03:56:31 +00:00
10 lines
237 B
C#
10 lines
237 B
C#
using Microsoft.Xna.Framework;
|
|
|
|
namespace MonoGame.Extended.Collisions
|
|
{
|
|
public class CollisionInfo
|
|
{
|
|
public ICollidable Other { get; internal set; }
|
|
public Vector2 PenetrationVector { get; internal set; }
|
|
}
|
|
} |