Init.
This commit is contained in:
10
Source/Entities/Entity2d.cs
Executable file
10
Source/Entities/Entity2d.cs
Executable file
@@ -0,0 +1,10 @@
|
||||
using System.Numerics;
|
||||
|
||||
namespace DaggerFramework
|
||||
{
|
||||
public class Entity2d : Entity
|
||||
{
|
||||
public Vector2 Position { get => position; set => position = value; }
|
||||
protected Vector2 position;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user