summaryrefslogtreecommitdiff
path: root/flogo.h
blob: f5b1065fbd60287630a3f47acfb755e4e44ddf5b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#pragma once

const int WIDTH=1000,HEIGHT=1000;

struct Turtle{
	double x=WIDTH/2,y=HEIGHT/2,dir=0; //dir in degrees, URDL
};

extern Turtle turtle;

void drawturtle(void);
void drawline(int x1,int y1,int x2,int y2);