10 lines
201 B
C#
10 lines
201 B
C#
using System.Numerics;
|
|
|
|
namespace DaggerFramework.SceneGraph
|
|
{
|
|
public class Entity2d : Entity
|
|
{
|
|
public Vector2 Position { get; set; }
|
|
public float Rotation { get; set; }
|
|
}
|
|
} |