mirror of
https://github.com/eliasstepanik/2DEngine.git
synced 2026-01-11 13:08:27 +00:00
16 lines
244 B
C#
16 lines
244 B
C#
using System.Numerics;
|
|
|
|
namespace RaylibTest.Support;
|
|
|
|
public class GameObject
|
|
{
|
|
public Vector2 Position;
|
|
public GameObject(Vector2 position)
|
|
{
|
|
Position = position;
|
|
}
|
|
public virtual void Draw()
|
|
{
|
|
|
|
}
|
|
} |