diff --git a/ZoFo/GameCore/GameObjects/Entity.cs b/ZoFo/GameCore/GameObjects/Entity.cs index 03124ac..db76947 100644 --- a/ZoFo/GameCore/GameObjects/Entity.cs +++ b/ZoFo/GameCore/GameObjects/Entity.cs @@ -1,8 +1,17 @@ using System; +using System.Numerics; namespace ZoFo; public class Entity { - + Vector2 position; + public Entity(Vector2 position) + { + this.position = position; + } + public virtual void SetPosition(Vector2 position) + { + Vector2 pos = position; + } }