10 lines
214 B
C#
Executable File
10 lines
214 B
C#
Executable File
using System.Numerics;
|
|
|
|
namespace DaggerFramework
|
|
{
|
|
public class Entity2d : Entity
|
|
{
|
|
public Vector2 Position { get => position; set => position = value; }
|
|
protected Vector2 position;
|
|
}
|
|
} |