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