#ifndef GRAPH_H
#define GRAPH_H

#include <objc/Object.h>

struct point
{
	int x, y;
};

@interface Graph : Object
{
	struct point *graph;
	int count;
}

- add: (int)Horiz: (int)Vert;
- draw;
- sort;
- free;
- init;

@end

#endif

