This commit is contained in:
unknown 2024-08-15 14:59:29 +03:00
parent 4e9c54906b
commit 74d5833ac6

View file

@ -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;
}
}