mirror of
https://github.com/AlexMacocian/MonoGame.Extended.git
synced 2026-07-26 00:45:20 +00:00
11 lines
236 B
C#
11 lines
236 B
C#
using Microsoft.Xna.Framework;
|
|
using MonoGame.Extended.Entities;
|
|
|
|
namespace Platformer.Components
|
|
{
|
|
[EntityComponent]
|
|
public class VelocityComponent //: EntityComponent
|
|
{
|
|
public Vector2 Velocity { get; set; }
|
|
}
|
|
} |