using System;
using System.Collections.Generic;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace EyesLib
{
class Class1
{
public void drawEyes(int lookAtX, int lookAtY, int width, int height, Graphics eyeArea)
{
int xleft = 0, yleft = 0, xright = 0, yright = 0, xpleft = 0, ypleft = 0, xpright = 0, ypright = 0, reye = 0, rpupil = 0;
xleft = width / 3;
yleft = height / 2;
xright = 2 * width / 3;
yright …Run Code Online (Sandbox Code Playgroud)