From 74d5833ac684b14ff39de57138747579a11f8e8e Mon Sep 17 00:00:00 2001 From: unknown Date: Thu, 15 Aug 2024 14:59:29 +0300 Subject: [PATCH] ent --- ZoFo/GameCore/GameObjects/Entity.cs | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) 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; + } }