mirror of
https://github.com/AlexMacocian/MonoGame.Extended.git
synced 2026-07-24 12:06:37 +00:00
12 lines
252 B
C#
12 lines
252 B
C#
using Microsoft.Xna.Framework;
|
|
using MonoGame.Extended;
|
|
|
|
namespace JamGame.Components
|
|
{
|
|
public class Body
|
|
{
|
|
public Vector2 Velocity { get; set; }
|
|
public Size2 Size { get; set; }
|
|
public bool IsHit { get; set; }
|
|
}
|
|
} |