mirror of
https://github.com/AlexMacocian/MonoGame.Extended.git
synced 2026-07-24 03:56:31 +00:00
a1f8566a46
* CircleF and RectangleF * Fix build errors
15 lines
324 B
C#
15 lines
324 B
C#
using Microsoft.Xna.Framework;
|
|
|
|
namespace MonoGame.Extended.Collisions
|
|
{
|
|
public interface ICollidable
|
|
{
|
|
RectangleF BoundingBox { get; }
|
|
}
|
|
|
|
public interface IActorTarget : IMovable, ICollidable
|
|
{
|
|
Vector2 Velocity { get; set; }
|
|
void OnCollision(CollisionInfo collisionInfo);
|
|
}
|
|
} |