Syntriax.Engine/Engine.Physics2D/Abstract/IRigidBody2D.cs

16 lines
367 B
C#
Raw Normal View History

using Syntriax.Engine.Core;
using Syntriax.Engine.Core.Abstract;
namespace Syntriax.Engine.Physics2D.Abstract;
public interface IRigidBody2D : IBehaviour, IAssignableTransform
{
IPhysicsMaterial2D Material { get; set; }
Vector2D Velocity { get; set; }
float AngularVelocity { get; set; }
float Mass { get; set; }
2024-01-24 19:21:53 +03:00
bool IsStatic { get; set; }
}