ent
This commit is contained in:
parent
4e9c54906b
commit
74d5833ac6
1 changed files with 10 additions and 1 deletions
|
@ -1,8 +1,17 @@
|
||||||
using System;
|
using System;
|
||||||
|
using System.Numerics;
|
||||||
|
|
||||||
namespace ZoFo;
|
namespace ZoFo;
|
||||||
|
|
||||||
public class Entity
|
public class Entity
|
||||||
{
|
{
|
||||||
|
Vector2 position;
|
||||||
|
public Entity(Vector2 position)
|
||||||
|
{
|
||||||
|
this.position = position;
|
||||||
|
}
|
||||||
|
public virtual void SetPosition(Vector2 position)
|
||||||
|
{
|
||||||
|
Vector2 pos = position;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue