Karnaugh-map/Chaser/ChaserLibrary/Player.cs

22 lines
402 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ChaserLibrary
{
public class Player : Entity
{
public override void Update()
{
throw new NotImplementedException();
}
public override void Draw()
{
Painter?.PaintCircle(X, Y, 10);
}
}
}